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) #1460976233 TYPO3Fluid\Fluid\Core\ViewHelper\Exception

You must either specify a string src or a File object.

in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/fluid/Classes/ViewHelpers/Uri/ImageViewHelper.php line 128
        $cropString = $arguments['crop'];
        $absolute = $arguments['absolute'];

        if (($src === '' && $image === null) || ($src !== '' && $image !== null)) {
            throw new Exception('You must either specify a string src or a File object.', 1460976233);
        }

        if ((string)$arguments['fileExtension'] && !GeneralUtility::inList($GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'], (string)$arguments['fileExtension'])) {
            throw new Exception('The extension ' . $arguments['fileExtension'] . ' is not specified in $GLOBALS[\'TYPO3_CONF_VARS\'][\'GFX\'][\'imagefile_ext\'] as a valid image file extension and can not be processed.', 1618992262);
at TYPO3\CMS\Fluid\ViewHelpers\Uri\ImageViewHelper::renderStatic(array('src' => '', 'treatIdAsReference' => false, 'image' => null, 'crop' => null, 'cropVariant' => 'default', 'fileExtension' => null, 'width' => null, 'height' => null, 'minWidth' => null, 'minHeight' => null, 'maxWidth' => 500, 'maxHeight' => null, 'absolute' => false), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/partial_Product_Details_Header_f4e93d840dc12f42e6a2ce5af07d34f527d82d9f.php line 716
$array112 = array (
);$arguments110['image'] = $renderingContext->getVariableProvider()->getByPath('product.teaserImage', $array112);
$arguments110['maxWidth'] = 500;

$output109 .= call_user_func_array( function ($var) { return (is_string($var) || (is_object($var) && method_exists($var, '__toString')) ? htmlspecialchars((string) $var, ENT_QUOTES) : $var); }, [TYPO3\CMS\Fluid\ViewHelpers\Uri\ImageViewHelper::renderStatic($arguments110, $renderChildrenClosure111, $renderingContext)]);

$output109 .= '" class="img-fluid" alt="';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
$renderChildrenClosure114 = function() use ($renderingContext, $self) {
at partial_Product_Details_Header_f4e93d840dc12f42e6a2ce5af07d34f527d82d9f->{closure}()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 304
    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 /var/www/web32/html/typo3conf/ext/vhs/Classes/ViewHelpers/TagViewHelper.php line 46
    public function render()
    {
        $this->arguments['class'] = trim((string) $this->arguments['class']);
        $this->arguments['class'] = str_replace(',', ' ', $this->arguments['class']);
        $content = $this->renderChildren();
        return $this->renderTag($this->arguments['name'], $content);
    }
}
at FluidTYPO3\Vhs\ViewHelpers\TagViewHelper->render()
at call_user_func(array(object(FluidTYPO3\Vhs\ViewHelpers\TagViewHelper), 'render'))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 264
     */
    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 /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 252
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $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\\TagViewHelper', array('additionalAttributes' => array('href' => '#'), 'data' => array('gallery-node-id' => 'product-gallery-elements'), 'aria' => null, 'class' => 'open-lightbox', 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => null, 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'forceClosingTag' => false, 'hideIfEmpty' => false, 'contenteditable' => null, 'contextmenu' => null, 'draggable' => null, 'dropzone' => null, 'translate' => null, 'spellcheck' => null, 'hidden' => null, 'name' => ''), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 524
     */
    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' => array('href' => '#'), 'data' => array('gallery-node-id' => 'product-gallery-elements'), 'aria' => null, 'class' => 'open-lightbox', 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => null, 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'forceClosingTag' => false, 'hideIfEmpty' => false, 'contenteditable' => null, 'contextmenu' => null, 'draggable' => null, 'dropzone' => null, 'translate' => null, 'spellcheck' => null, 'hidden' => null, 'name' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/partial_Product_Details_Header_f4e93d840dc12f42e6a2ce5af07d34f527d82d9f.php line 808
$array108 = array();
$array108['href'] = '#';
$arguments100['additionalAttributes'] = $array108;

$output99 .= FluidTYPO3\Vhs\ViewHelpers\TagViewHelper::renderStatic($arguments100, $renderChildrenClosure101, $renderingContext);

$output99 .= '
            </div>

at partial_Product_Details_Header_f4e93d840dc12f42e6a2ce5af07d34f527d82d9f->section_e637770d133f0dcdefe2523b20579e34cdb61aa6(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('ImageLightbox', array('settings' => array('detailPageUid' => '21', 'contactPersonPageUid' => '33', 'lazyLoading' => 'lazy', 'selectedCategory' => '1', 'imageDisplayType' => 'lightbox', 'showFurtherProducts' => '0'), 'product' => null), false)
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 173
            $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' => 'ImageLightbox', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array('settings' => array('detailPageUid' => '21', 'contactPersonPageUid' => '33', 'lazyLoading' => 'lazy', 'selectedCategory' => '1', 'imageDisplayType' => 'lightbox', 'showFurtherProducts' => '0'), 'product' => null), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/partial_Product_Details_Header_f4e93d840dc12f42e6a2ce5af07d34f527d82d9f.php line 198
$arguments7['debug'] = true;
$arguments7['section'] = 'ImageLightbox';
$arguments7['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output6 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= '
                                ';
return $output6;
at partial_Product_Details_Header_f4e93d840dc12f42e6a2ce5af07d34f527d82d9f->{closure}()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/partial_Product_Details_Header_f4e93d840dc12f42e6a2ce5af07d34f527d82d9f.php line 234
                                ';
return $output10;
};

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

$output0 .= '
                        </div>
                    </div>
at partial_Product_Details_Header_f4e93d840dc12f42e6a2ce5af07d34f527d82d9f->section_040f06fd774092478d450774f5ba30c5da78acc8(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('content', array('settings' => array('detailPageUid' => '21', 'contactPersonPageUid' => '33', 'lazyLoading' => 'lazy', 'selectedCategory' => '1', 'imageDisplayType' => 'lightbox', 'showFurtherProducts' => '0'), 'product' => null), false)
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 327
        }
        $renderingContext->setVariableProvider($renderingContext->getVariableProvider()->getScopeCopy($variables));
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('Product/Details/Header', 'content', array('settings' => array('detailPageUid' => '21', 'contactPersonPageUid' => '33', 'lazyLoading' => 'lazy', 'selectedCategory' => '1', 'imageDisplayType' => 'lightbox', 'showFurtherProducts' => '0'), 'product' => null), false)
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'content', 'partial' => 'Product/Details/Header', 'delegate' => null, 'renderable' => null, 'arguments' => array('settings' => array('detailPageUid' => '21', 'contactPersonPageUid' => '33', 'lazyLoading' => 'lazy', 'selectedCategory' => '1', 'imageDisplayType' => 'lightbox', 'showFurtherProducts' => '0'), 'product' => null), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/Product_action_show_6035c7a34210b84efaab1621ff48a2677aa472d6.php line 85
$arguments4['partial'] = 'Product/Details/Header';
$arguments4['section'] = 'content';
$arguments4['arguments'] = $renderingContext->getVariableProvider()->getAll();

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

$output0 .= '
            ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at Product_action_show_6035c7a34210b84efaab1621ff48a2677aa472d6->section_040f06fd774092478d450774f5ba30c5da78acc8(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('content', array(), false)
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 173
            $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' => 'content', '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 /var/www/web32/html/typo3temp/var/cache/code/fluid_template/layout_Default_html_a23033870b774bc848765b0f5fc4a1e8425f3644.php line 66
$arguments1['contentAs'] = NULL;
$arguments1['debug'] = true;
$arguments1['section'] = 'content';

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

$output0 .= '
 </div>
';
at layout_Default_html_a23033870b774bc848765b0f5fc4a1e8425f3644->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 201
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 1093
    protected function htmlResponse(string $html = null): ResponseInterface
    {
        return $this->responseFactory->createResponse()
            ->withHeader('Content-Type', 'text/html; charset=utf-8')
            ->withBody($this->streamFactory->createStream($html ?? $this->view->render()));
    }

    /**
     * Returns a response object with either the given json string or the current rendered
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->htmlResponse()
in /var/www/web32/html/typo3conf/ext/servomat_products/Classes/Controller/ProductController.php line 86
            $GLOBALS['TSFE']->page['description'] = $product->getMetadescription();
        }

        $this->view->assign('product', $product);
        return $this->htmlResponse();
    }
}
at AXSIGN\ServomatProducts\Controller\ProductController->showAction(null)
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 575
        }
        $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(object(TYPO3\CMS\Extbase\Mvc\Request))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 492
        $this->view = $this->resolveView();
        if ($this->view !== null && method_exists($this, 'initializeView')) {
            $this->initializeView($this->view);
        }
        $response = $this->callActionMethod($request);
        $this->renderAssetsForRequest($request);

        return $response;
    }
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 96
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $response = $controller->processRequest($request);
                if ($response instanceof ForwardResponse) {
                    // The controller action returned an extbase internal Forward response:
                    // Another action should be dispatched.
                    $request = static::buildRequestFromCurrentRequestAndForwardResponse($request, $response);
at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Request))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 46
     * @throws InfiniteLoopException
     */
    public function handleRequest(RequestInterface $request)
    {
        return $this->dispatcher->dispatch($request);
    }

    /**
     * This request handler can handle any web request.
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 165
        }

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

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

        // 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' => 'ServomatProducts', 'pluginName' => 'Show'))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'Show'), 'tt_content.list.20.servomatproducts_show')
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'wst3bootstrap_page' => 'USER', 'wst3bootstrap_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Page'), 'wst3bootstrap_menu' => 'USER', 'wst3bootstrap_menu.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Menu'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'googletagmanager_tracking' => 'USER', 'googletagmanager_tracking.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking'), 'googletagmanager_datalayer' => 'USER', 'googletagmanager_datalayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'DataLayer'), 'servomatpartners_list' => 'USER', 'servomatpartners_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatPartners', 'pluginName' => 'List'), 'servomatproducts_list' => 'USER', 'servomatproducts_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'List'), 'servomatproducts_show' => 'USER', 'servomatproducts_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'Show')), 'tt_content.list.20.servomatproducts_show', 'servomatproducts_show')
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 60, 'rowDescription' => '', 'pid' => 21, 'tstamp' => 1642789711, 'crdate' => 1642288857, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'editlock' => 0, 'sys_language_uid' => 0, 'l18n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l18n_diffsource' => '{"CType":"","colPos":"","header":"","header_layout":"","header_position":"","date":"","header_link":"","subheader":"","list_type":"","pi_flexform":"","pages":"","recursive":"","layout":"","bg_color_class":"","frame_class":"","space_before_class":"","space_after_class":"","padding_top_class":"","padding_bottom_class":"","full_width":"","fixed_image":"","sectionIndex":"","linkToTop":"","sys_language_uid":"","hidden":"","starttime":"","endtime":"","fe_group":"","editlock":"","categories":"","rowDescription":""}', 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 'CType' => 'list', 'header' => 'Produkt Detailansicht', 'header_position' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => '', 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => null, 'pages' => '', 'colPos' => 0, 'subheader' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'servomatproducts_show', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'filelink_sorting_direction' => 'ascending', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.selectedCategory"> <value index="vDEF">1</value> </field> <field index="settings.imageDisplayType"> <value index="vDEF">lightbox</value> </field> <field index="settings.showFurtherProducts"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'categories' => 0, 'selected_categories' => null, 'tx_impexp_origuid' => 0, 'tx_flux_migrated_version' => null, 'image_classes' => '', 'element_classes' => '', 'effects' => '', 'imagecols_xs' => 1, 'imagecols_sm' => 1, 'imagecols_md' => 1, 'imagecols_lg' => 1, 'imagecols_xl' => 1, 'background_media' => 0, 'html_tag' => 'div', 'bg_color_class' => '', 'padding_top_class' => '', 'padding_bottom_class' => '', 'footer' => '', 'footer_position' => '', 'footer_link' => '', 'footer_layout' => '0', 'tx_wst3bootstrap_card_elements' => 0, 'tx_wst3bootstrap_card_elements_backside' => 0, 'image_overlay' => 0, 'tx_wst3bootstrap_counterbar_item' => 0, 'icon' => '', 'icon_color' => '', 'icon_style' => '', 'icon_size' => '', 'form_layout' => '', 'grid_layout' => '', 'icon_position' => 0, 'full_width' => 1, 'fixed_image' => 0, 'levels' => 7, 'tx_wst3bootstrap_migrated_version' => '', 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => 'Default', 'tx_news_related_news' => 0, 'flexbox' => array()), 'typoscriptObjectPath' => 'tt_content.list.20.servomatproducts_show', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/Standard_action_list_1d44c4f5052c8755dd427f927ed457d919bb7597.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_1d44c4f5052c8755dd427f927ed457d919bb7597->{closure}()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/Standard_action_list_1d44c4f5052c8755dd427f927ed457d919bb7597.php line 99
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

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

$output0 .= '

';
at Standard_action_list_1d44c4f5052c8755dd427f927ed457d919bb7597->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('Main', array(), true)
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 173
            $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 /var/www/web32/html/typo3temp/var/cache/code/fluid_template/layout_Default_html_b59bd294dcf32ba0569c18611111ed29ef66a34d.php line 1371
     ),
     $renderingContext
    );

$output34 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments67, $renderChildrenClosure68, $renderingContext);

$output34 .= '
                            ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_b59bd294dcf32ba0569c18611111ed29ef66a34d->{closure}()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 304
    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 /var/www/web32/html/typo3conf/ext/vhs/Classes/ViewHelpers/TagViewHelper.php line 46
    public function render()
    {
        $this->arguments['class'] = trim((string) $this->arguments['class']);
        $this->arguments['class'] = str_replace(',', ' ', $this->arguments['class']);
        $content = $this->renderChildren();
        return $this->renderTag($this->arguments['name'], $content);
    }
}
at FluidTYPO3\Vhs\ViewHelpers\TagViewHelper->render()
at call_user_func(array(object(FluidTYPO3\Vhs\ViewHelpers\TagViewHelper), 'render'))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 264
     */
    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 /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 252
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $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\\TagViewHelper', array('additionalAttributes' => null, 'data' => null, 'aria' => null, 'class' => 'container', 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => null, 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'forceClosingTag' => false, 'hideIfEmpty' => false, 'contenteditable' => null, 'contextmenu' => null, 'draggable' => null, 'dropzone' => null, 'translate' => null, 'spellcheck' => null, 'hidden' => null, 'name' => ''), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 524
     */
    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' => null, 'aria' => null, 'class' => 'container', 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => null, 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'forceClosingTag' => false, 'hideIfEmpty' => false, 'contenteditable' => null, 'contextmenu' => null, 'draggable' => null, 'dropzone' => null, 'translate' => null, 'spellcheck' => null, 'hidden' => null, 'name' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/layout_Default_html_b59bd294dcf32ba0569c18611111ed29ef66a34d.php line 1555
$arguments27['else'] = '';
$arguments25['name'] = TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments27, $renderChildrenClosure28, $renderingContext);
$arguments25['class'] = 'container';

$output24 .= FluidTYPO3\Vhs\ViewHelpers\TagViewHelper::renderStatic($arguments25, $renderChildrenClosure26, $renderingContext);

$output24 .= '
            ';
return $output24;
at layout_Default_html_b59bd294dcf32ba0569c18611111ed29ef66a34d->{closure}()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 304
    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 /var/www/web32/html/typo3conf/ext/vhs/Classes/ViewHelpers/TagViewHelper.php line 46
    public function render()
    {
        $this->arguments['class'] = trim((string) $this->arguments['class']);
        $this->arguments['class'] = str_replace(',', ' ', $this->arguments['class']);
        $content = $this->renderChildren();
        return $this->renderTag($this->arguments['name'], $content);
    }
}
at FluidTYPO3\Vhs\ViewHelpers\TagViewHelper->render()
at call_user_func(array(object(FluidTYPO3\Vhs\ViewHelpers\TagViewHelper), 'render'))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 264
     */
    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 /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 252
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $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\\TagViewHelper', array('additionalAttributes' => null, 'data' => null, 'aria' => null, 'class' => 'frame g-inner-container frame-type-list frame-layout-0 frame-space-before-none frame-space-after-medium frame-padding-top-none frame-padding-bottom-none frame- ', 'dir' => null, 'id' => 'c60', 'lang' => null, 'style' => null, 'title' => null, 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'forceClosingTag' => false, 'hideIfEmpty' => false, 'contenteditable' => null, 'contextmenu' => null, 'draggable' => null, 'dropzone' => null, 'translate' => null, 'spellcheck' => null, 'hidden' => null, 'name' => 'div'), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 524
     */
    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' => null, 'aria' => null, 'class' => 'frame g-inner-container frame-type-list frame-layout-0 frame-space-before-none frame-space-after-medium frame-padding-top-none frame-padding-bottom-none frame- ', 'dir' => null, 'id' => 'c60', 'lang' => null, 'style' => null, 'title' => null, 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'forceClosingTag' => false, 'hideIfEmpty' => false, 'contenteditable' => null, 'contextmenu' => null, 'draggable' => null, 'dropzone' => null, 'translate' => null, 'spellcheck' => null, 'hidden' => null, 'name' => 'div'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/layout_Default_html_b59bd294dcf32ba0569c18611111ed29ef66a34d.php line 1596
$arguments18['id'] = $output21;
$array23 = array (
);$arguments18['name'] = $renderingContext->getVariableProvider()->getByPath('data.html_tag', $array23);

$output6 .= FluidTYPO3\Vhs\ViewHelpers\TagViewHelper::renderStatic($arguments18, $renderChildrenClosure19, $renderingContext);

$output6 .= '

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

$output3 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output3 .= '
';
return $output3;
at layout_Default_html_b59bd294dcf32ba0569c18611111ed29ef66a34d->{closure}()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 60
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', (string)$childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/layout_Default_html_b59bd294dcf32ba0569c18611111ed29ef66a34d.php line 2007
return $output3;
};
$arguments1 = array();

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

$output0 .= '

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

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

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Templates/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Partials/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Layouts/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', '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' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" data-fancybox="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0', 'enablejsapi' => '0')), 'wst3bootstrap.' => array('privacyPolicies.' => array('optinVideo' => '1', 'google.' => array('defaultLang' => 'https://policies.google.com/privacy'), 'vimeo.' => array('defaultLang' => 'https://vimeo.com/privacy'), 'policyPid' => '40'), 'buttongroup.' => array('alignments' => '{"btn-group":"horizontal","btn-group-vertical":"vertikal"}'), 'breakpoints.' => array('xs.' => array('min' => '0', 'max' => '575.98', 'imageWidth' => '576', 'mediaquery' => '(max-width: 575.98px)', 'cropVariant' => 'xs', 'activated' => 'true'), 'sm.' => array('min' => '576', 'max' => '767.98', 'imageWidth' => '768', 'mediaquery' => '(min-width: 576px) and (max-width: 767.98px)', 'cropVariant' => 'sm', 'activated' => 'true'), 'md.' => array('min' => '768', 'max' => '991.98', 'imageWidth' => '992', 'mediaquery' => '(min-width: 768px) and (max-width: 991.98px)', 'cropVariant' => 'md', 'activated' => 'true'), 'lg.' => array('min' => '992', 'max' => '1199.98', 'imageWidth' => '1200', 'mediaquery' => '(min-width: 992px) and (max-width: 1199.98px)', 'cropVariant' => 'lg', 'activated' => 'true'), 'xl.' => array('min' => '1200', 'max' => '0', 'imageWidth' => '1400', 'mediaquery' => '(min-width: 1200px)', 'cropVariant' => 'xl', 'activated' => 'true'), 'xxl.' => array('min' => '1400', 'max' => '{$plugin.tx_wst3bootstrap.settings.breakpointsMax.xxl}', 'imageWidth' => '1920', 'mediaquery' => '(min-width: 1400px)', 'cropVariant' => 'xxl', 'activated' => 'false')), 'breakpointsMax.' => array('xs' => '575.98', 'sm' => '767.98', 'md' => '991.98', 'lg' => '1199.98', 'xl' => '0', 'xxl' => '{$plugin.tx_wst3bootstrap.settings.breakpointsMax.xxl}'), 'containerWidths.' => array('sm' => '540', 'md' => '720', 'lg' => '960', 'xl' => '1140', 'xxl' => '{$plugin.tx_wst3bootstrap.settings.containerWidths.xxl}'), 'imageFullwidth' => '1920', 'gridColumns' => '12', 'defaultGridLayout' => '100g:100t', 'font-size-root' => '16', 'cropVariantFullWidth' => 'full', 'icon.' => array('rendering' => 'svg', 'defaultSize' => 'md', 'defaultColor' => 'darkgray'), 'content.' => array('padding.' => array('top' => 'none', 'bottom' => 'none'), 'margin.' => array('top' => 'none', 'bottom' => 'medium'), 'types.' => array('wst3bootstrap_fluidrow.' => array('margin.' => array('bottom' => 'none')), 'wst3bootstrap_container.' => array('margin.' => array('bottom' => 'none')), 'wst3bootstrap_buttonlink.' => array('margin.' => array('bottom' => 'small')), 'wst3bootstrap_megamenu.' => array('margin.' => array('bottom' => 'none')), 'div.' => array('margin.' => array('top' => 'small', 'bottom' => 'small')), 'header.' => array('margin.' => array('bottom' => 'none')))), 'gridLayouts.' => array('50t:50g.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50g:50t.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'), 'md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50t:50g-f.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50g:50t-f.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'), 'md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50m:50g.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50g:50m.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '66t:33g.' => array('breakPoints.' => array('md.' => array('columns' => '4,8', 'orders' => '1,0'))), '33g:66t.' => array('breakPoints.' => array('md.' => array('columns' => '4,8', 'orders' => '0,1'))), '33g:66t-f.' => array('breakPoints.' => array('md.' => array('columns' => '4,8'))), '66t:33g-f.' => array('breakPoints.' => array('md.' => array('columns' => '4,8'))), '33t:66g.' => array('breakPoints.' => array('md.' => array('columns' => '8,4', 'orders' => '1,0'))), '66g:33t.' => array('breakPoints.' => array('md.' => array('columns' => '8,4', 'orders' => '0,1'))), '100t:100g.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'))), '100m:100g.' => array(), '100g:100t.' => array(), '33m:33t:33g.' => array('breakPoints.' => array('xs.' => array('columns' => '12,12,12', 'orders' => '0,1,2'), 'md.' => array('columns' => '4,4,4', 'orders' => '0,2,1'))), '50t:50mb.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50mb:50t.' => array('breakPoints.' => array('xs.' => array('orders' => '0,1'), 'md.' => array('columns' => '6,6', 'orders' => '0,1')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '703.' => array('references.' => array('fieldName' => 'background_media'), 'as' => 'backgroundMedia'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\IconProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\FrameClassesProcessor'), '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('flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'wst3bootstrap_page' => 'USER', 'wst3bootstrap_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Page'), 'wst3bootstrap_menu' => 'USER', 'wst3bootstrap_menu.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Menu'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'googletagmanager_tracking' => 'USER', 'googletagmanager_tracking.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking'), 'googletagmanager_datalayer' => 'USER', 'googletagmanager_datalayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'DataLayer'), 'servomatpartners_list' => 'USER', 'servomatpartners_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatPartners', 'pluginName' => 'List'), 'servomatproducts_list' => 'USER', 'servomatproducts_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'List'), 'servomatproducts_show' => 'USER', 'servomatproducts_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'Show'))))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // 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:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Templates/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Partials/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Layouts/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', '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' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" data-fancybox="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0', 'enablejsapi' => '0')), 'wst3bootstrap.' => array('privacyPolicies.' => array('optinVideo' => '1', 'google.' => array('defaultLang' => 'https://policies.google.com/privacy'), 'vimeo.' => array('defaultLang' => 'https://vimeo.com/privacy'), 'policyPid' => '40'), 'buttongroup.' => array('alignments' => '{"btn-group":"horizontal","btn-group-vertical":"vertikal"}'), 'breakpoints.' => array('xs.' => array('min' => '0', 'max' => '575.98', 'imageWidth' => '576', 'mediaquery' => '(max-width: 575.98px)', 'cropVariant' => 'xs', 'activated' => 'true'), 'sm.' => array('min' => '576', 'max' => '767.98', 'imageWidth' => '768', 'mediaquery' => '(min-width: 576px) and (max-width: 767.98px)', 'cropVariant' => 'sm', 'activated' => 'true'), 'md.' => array('min' => '768', 'max' => '991.98', 'imageWidth' => '992', 'mediaquery' => '(min-width: 768px) and (max-width: 991.98px)', 'cropVariant' => 'md', 'activated' => 'true'), 'lg.' => array('min' => '992', 'max' => '1199.98', 'imageWidth' => '1200', 'mediaquery' => '(min-width: 992px) and (max-width: 1199.98px)', 'cropVariant' => 'lg', 'activated' => 'true'), 'xl.' => array('min' => '1200', 'max' => '0', 'imageWidth' => '1400', 'mediaquery' => '(min-width: 1200px)', 'cropVariant' => 'xl', 'activated' => 'true'), 'xxl.' => array('min' => '1400', 'max' => '{$plugin.tx_wst3bootstrap.settings.breakpointsMax.xxl}', 'imageWidth' => '1920', 'mediaquery' => '(min-width: 1400px)', 'cropVariant' => 'xxl', 'activated' => 'false')), 'breakpointsMax.' => array('xs' => '575.98', 'sm' => '767.98', 'md' => '991.98', 'lg' => '1199.98', 'xl' => '0', 'xxl' => '{$plugin.tx_wst3bootstrap.settings.breakpointsMax.xxl}'), 'containerWidths.' => array('sm' => '540', 'md' => '720', 'lg' => '960', 'xl' => '1140', 'xxl' => '{$plugin.tx_wst3bootstrap.settings.containerWidths.xxl}'), 'imageFullwidth' => '1920', 'gridColumns' => '12', 'defaultGridLayout' => '100g:100t', 'font-size-root' => '16', 'cropVariantFullWidth' => 'full', 'icon.' => array('rendering' => 'svg', 'defaultSize' => 'md', 'defaultColor' => 'darkgray'), 'content.' => array('padding.' => array('top' => 'none', 'bottom' => 'none'), 'margin.' => array('top' => 'none', 'bottom' => 'medium'), 'types.' => array('wst3bootstrap_fluidrow.' => array('margin.' => array('bottom' => 'none')), 'wst3bootstrap_container.' => array('margin.' => array('bottom' => 'none')), 'wst3bootstrap_buttonlink.' => array('margin.' => array('bottom' => 'small')), 'wst3bootstrap_megamenu.' => array('margin.' => array('bottom' => 'none')), 'div.' => array('margin.' => array('top' => 'small', 'bottom' => 'small')), 'header.' => array('margin.' => array('bottom' => 'none')))), 'gridLayouts.' => array('50t:50g.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50g:50t.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'), 'md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50t:50g-f.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50g:50t-f.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'), 'md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50m:50g.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50g:50m.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '66t:33g.' => array('breakPoints.' => array('md.' => array('columns' => '4,8', 'orders' => '1,0'))), '33g:66t.' => array('breakPoints.' => array('md.' => array('columns' => '4,8', 'orders' => '0,1'))), '33g:66t-f.' => array('breakPoints.' => array('md.' => array('columns' => '4,8'))), '66t:33g-f.' => array('breakPoints.' => array('md.' => array('columns' => '4,8'))), '33t:66g.' => array('breakPoints.' => array('md.' => array('columns' => '8,4', 'orders' => '1,0'))), '66g:33t.' => array('breakPoints.' => array('md.' => array('columns' => '8,4', 'orders' => '0,1'))), '100t:100g.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'))), '100m:100g.' => array(), '100g:100t.' => array(), '33m:33t:33g.' => array('breakPoints.' => array('xs.' => array('columns' => '12,12,12', 'orders' => '0,1,2'), 'md.' => array('columns' => '4,4,4', 'orders' => '0,2,1'))), '50t:50mb.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50mb:50t.' => array('breakPoints.' => array('xs.' => array('orders' => '0,1'), 'md.' => array('columns' => '6,6', 'orders' => '0,1')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '703.' => array('references.' => array('fieldName' => 'background_media'), 'as' => 'backgroundMedia'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\IconProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\FrameClassesProcessor'), '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('flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'wst3bootstrap_page' => 'USER', 'wst3bootstrap_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Page'), 'wst3bootstrap_menu' => 'USER', 'wst3bootstrap_menu.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Menu'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'googletagmanager_tracking' => 'USER', 'googletagmanager_tracking.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking'), 'googletagmanager_datalayer' => 'USER', 'googletagmanager_datalayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'DataLayer'), 'servomatpartners_list' => 'USER', 'servomatpartners_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatPartners', 'pluginName' => 'List'), 'servomatproducts_list' => 'USER', 'servomatproducts_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'List'), 'servomatproducts_show' => 'USER', 'servomatproducts_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'Show'))))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Templates/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Partials/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Layouts/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', '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' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" data-fancybox="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0', 'enablejsapi' => '0')), 'wst3bootstrap.' => array('privacyPolicies.' => array('optinVideo' => '1', 'google.' => array('defaultLang' => 'https://policies.google.com/privacy'), 'vimeo.' => array('defaultLang' => 'https://vimeo.com/privacy'), 'policyPid' => '40'), 'buttongroup.' => array('alignments' => '{"btn-group":"horizontal","btn-group-vertical":"vertikal"}'), 'breakpoints.' => array('xs.' => array('min' => '0', 'max' => '575.98', 'imageWidth' => '576', 'mediaquery' => '(max-width: 575.98px)', 'cropVariant' => 'xs', 'activated' => 'true'), 'sm.' => array('min' => '576', 'max' => '767.98', 'imageWidth' => '768', 'mediaquery' => '(min-width: 576px) and (max-width: 767.98px)', 'cropVariant' => 'sm', 'activated' => 'true'), 'md.' => array('min' => '768', 'max' => '991.98', 'imageWidth' => '992', 'mediaquery' => '(min-width: 768px) and (max-width: 991.98px)', 'cropVariant' => 'md', 'activated' => 'true'), 'lg.' => array('min' => '992', 'max' => '1199.98', 'imageWidth' => '1200', 'mediaquery' => '(min-width: 992px) and (max-width: 1199.98px)', 'cropVariant' => 'lg', 'activated' => 'true'), 'xl.' => array('min' => '1200', 'max' => '0', 'imageWidth' => '1400', 'mediaquery' => '(min-width: 1200px)', 'cropVariant' => 'xl', 'activated' => 'true'), 'xxl.' => array('min' => '1400', 'max' => '{$plugin.tx_wst3bootstrap.settings.breakpointsMax.xxl}', 'imageWidth' => '1920', 'mediaquery' => '(min-width: 1400px)', 'cropVariant' => 'xxl', 'activated' => 'false')), 'breakpointsMax.' => array('xs' => '575.98', 'sm' => '767.98', 'md' => '991.98', 'lg' => '1199.98', 'xl' => '0', 'xxl' => '{$plugin.tx_wst3bootstrap.settings.breakpointsMax.xxl}'), 'containerWidths.' => array('sm' => '540', 'md' => '720', 'lg' => '960', 'xl' => '1140', 'xxl' => '{$plugin.tx_wst3bootstrap.settings.containerWidths.xxl}'), 'imageFullwidth' => '1920', 'gridColumns' => '12', 'defaultGridLayout' => '100g:100t', 'font-size-root' => '16', 'cropVariantFullWidth' => 'full', 'icon.' => array('rendering' => 'svg', 'defaultSize' => 'md', 'defaultColor' => 'darkgray'), 'content.' => array('padding.' => array('top' => 'none', 'bottom' => 'none'), 'margin.' => array('top' => 'none', 'bottom' => 'medium'), 'types.' => array('wst3bootstrap_fluidrow.' => array('margin.' => array('bottom' => 'none')), 'wst3bootstrap_container.' => array('margin.' => array('bottom' => 'none')), 'wst3bootstrap_buttonlink.' => array('margin.' => array('bottom' => 'small')), 'wst3bootstrap_megamenu.' => array('margin.' => array('bottom' => 'none')), 'div.' => array('margin.' => array('top' => 'small', 'bottom' => 'small')), 'header.' => array('margin.' => array('bottom' => 'none')))), 'gridLayouts.' => array('50t:50g.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50g:50t.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'), 'md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50t:50g-f.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50g:50t-f.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'), 'md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50m:50g.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50g:50m.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '66t:33g.' => array('breakPoints.' => array('md.' => array('columns' => '4,8', 'orders' => '1,0'))), '33g:66t.' => array('breakPoints.' => array('md.' => array('columns' => '4,8', 'orders' => '0,1'))), '33g:66t-f.' => array('breakPoints.' => array('md.' => array('columns' => '4,8'))), '66t:33g-f.' => array('breakPoints.' => array('md.' => array('columns' => '4,8'))), '33t:66g.' => array('breakPoints.' => array('md.' => array('columns' => '8,4', 'orders' => '1,0'))), '66g:33t.' => array('breakPoints.' => array('md.' => array('columns' => '8,4', 'orders' => '0,1'))), '100t:100g.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'))), '100m:100g.' => array(), '100g:100t.' => array(), '33m:33t:33g.' => array('breakPoints.' => array('xs.' => array('columns' => '12,12,12', 'orders' => '0,1,2'), 'md.' => array('columns' => '4,4,4', 'orders' => '0,2,1'))), '50t:50mb.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50mb:50t.' => array('breakPoints.' => array('xs.' => array('orders' => '0,1'), 'md.' => array('columns' => '6,6', 'orders' => '0,1')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '703.' => array('references.' => array('fieldName' => 'background_media'), 'as' => 'backgroundMedia'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\IconProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\FrameClassesProcessor'), '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('flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'wst3bootstrap_page' => 'USER', 'wst3bootstrap_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Page'), 'wst3bootstrap_menu' => 'USER', 'wst3bootstrap_menu.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Menu'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'googletagmanager_tracking' => 'USER', 'googletagmanager_tracking.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking'), 'googletagmanager_datalayer' => 'USER', 'googletagmanager_datalayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'DataLayer'), 'servomatpartners_list' => 'USER', 'servomatpartners_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatPartners', 'pluginName' => 'List'), 'servomatproducts_list' => 'USER', 'servomatproducts_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'List'), 'servomatproducts_show' => 'USER', 'servomatproducts_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'Show'))), 'lib.contentElement')
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Templates/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Partials/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:servomattemplate/Resources/Private/Extensions/fluid_styled_content/Layouts/', 'EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', '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' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" data-fancybox="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0', 'enablejsapi' => '0')), 'wst3bootstrap.' => array('privacyPolicies.' => array('optinVideo' => '1', 'google.' => array('defaultLang' => 'https://policies.google.com/privacy'), 'vimeo.' => array('defaultLang' => 'https://vimeo.com/privacy'), 'policyPid' => '40'), 'buttongroup.' => array('alignments' => '{"btn-group":"horizontal","btn-group-vertical":"vertikal"}'), 'breakpoints.' => array('xs.' => array('min' => '0', 'max' => '575.98', 'imageWidth' => '576', 'mediaquery' => '(max-width: 575.98px)', 'cropVariant' => 'xs', 'activated' => 'true'), 'sm.' => array('min' => '576', 'max' => '767.98', 'imageWidth' => '768', 'mediaquery' => '(min-width: 576px) and (max-width: 767.98px)', 'cropVariant' => 'sm', 'activated' => 'true'), 'md.' => array('min' => '768', 'max' => '991.98', 'imageWidth' => '992', 'mediaquery' => '(min-width: 768px) and (max-width: 991.98px)', 'cropVariant' => 'md', 'activated' => 'true'), 'lg.' => array('min' => '992', 'max' => '1199.98', 'imageWidth' => '1200', 'mediaquery' => '(min-width: 992px) and (max-width: 1199.98px)', 'cropVariant' => 'lg', 'activated' => 'true'), 'xl.' => array('min' => '1200', 'max' => '0', 'imageWidth' => '1400', 'mediaquery' => '(min-width: 1200px)', 'cropVariant' => 'xl', 'activated' => 'true'), 'xxl.' => array('min' => '1400', 'max' => '{$plugin.tx_wst3bootstrap.settings.breakpointsMax.xxl}', 'imageWidth' => '1920', 'mediaquery' => '(min-width: 1400px)', 'cropVariant' => 'xxl', 'activated' => 'false')), 'breakpointsMax.' => array('xs' => '575.98', 'sm' => '767.98', 'md' => '991.98', 'lg' => '1199.98', 'xl' => '0', 'xxl' => '{$plugin.tx_wst3bootstrap.settings.breakpointsMax.xxl}'), 'containerWidths.' => array('sm' => '540', 'md' => '720', 'lg' => '960', 'xl' => '1140', 'xxl' => '{$plugin.tx_wst3bootstrap.settings.containerWidths.xxl}'), 'imageFullwidth' => '1920', 'gridColumns' => '12', 'defaultGridLayout' => '100g:100t', 'font-size-root' => '16', 'cropVariantFullWidth' => 'full', 'icon.' => array('rendering' => 'svg', 'defaultSize' => 'md', 'defaultColor' => 'darkgray'), 'content.' => array('padding.' => array('top' => 'none', 'bottom' => 'none'), 'margin.' => array('top' => 'none', 'bottom' => 'medium'), 'types.' => array('wst3bootstrap_fluidrow.' => array('margin.' => array('bottom' => 'none')), 'wst3bootstrap_container.' => array('margin.' => array('bottom' => 'none')), 'wst3bootstrap_buttonlink.' => array('margin.' => array('bottom' => 'small')), 'wst3bootstrap_megamenu.' => array('margin.' => array('bottom' => 'none')), 'div.' => array('margin.' => array('top' => 'small', 'bottom' => 'small')), 'header.' => array('margin.' => array('bottom' => 'none')))), 'gridLayouts.' => array('50t:50g.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50g:50t.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'), 'md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50t:50g-f.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50g:50t-f.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'), 'md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50m:50g.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '0,1'))), '50g:50m.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '66t:33g.' => array('breakPoints.' => array('md.' => array('columns' => '4,8', 'orders' => '1,0'))), '33g:66t.' => array('breakPoints.' => array('md.' => array('columns' => '4,8', 'orders' => '0,1'))), '33g:66t-f.' => array('breakPoints.' => array('md.' => array('columns' => '4,8'))), '66t:33g-f.' => array('breakPoints.' => array('md.' => array('columns' => '4,8'))), '33t:66g.' => array('breakPoints.' => array('md.' => array('columns' => '8,4', 'orders' => '1,0'))), '66g:33t.' => array('breakPoints.' => array('md.' => array('columns' => '8,4', 'orders' => '0,1'))), '100t:100g.' => array('breakPoints.' => array('xs.' => array('orders' => '1,0'))), '100m:100g.' => array(), '100g:100t.' => array(), '33m:33t:33g.' => array('breakPoints.' => array('xs.' => array('columns' => '12,12,12', 'orders' => '0,1,2'), 'md.' => array('columns' => '4,4,4', 'orders' => '0,2,1'))), '50t:50mb.' => array('breakPoints.' => array('md.' => array('columns' => '6,6', 'orders' => '1,0'))), '50mb:50t.' => array('breakPoints.' => array('xs.' => array('orders' => '0,1'), 'md.' => array('columns' => '6,6', 'orders' => '0,1')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '703.' => array('references.' => array('fieldName' => 'background_media'), 'as' => 'backgroundMedia'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\IconProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\FrameClassesProcessor'), '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('flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'wst3bootstrap_page' => 'USER', 'wst3bootstrap_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Page'), 'wst3bootstrap_menu' => 'USER', 'wst3bootstrap_menu.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Menu'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'googletagmanager_tracking' => 'USER', 'googletagmanager_tracking.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking'), 'googletagmanager_datalayer' => 'USER', 'googletagmanager_datalayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'DataLayer'), 'servomatpartners_list' => 'USER', 'servomatpartners_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatPartners', 'pluginName' => 'List'), 'servomatproducts_list' => 'USER', 'servomatproducts_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'List'), 'servomatproducts_show' => 'USER', 'servomatproducts_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'Show'))), 'list')
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 45
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'wst3bootstrap_page' => 'USER', 'wst3bootstrap_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Page'), 'wst3bootstrap_menu' => 'USER', 'wst3bootstrap_menu.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Menu'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'googletagmanager_tracking' => 'USER', 'googletagmanager_tracking.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking'), 'googletagmanager_datalayer' => 'USER', 'googletagmanager_datalayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'DataLayer'), 'servomatpartners_list' => 'USER', 'servomatpartners_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatPartners', 'pluginName' => 'List'), 'servomatproducts_list' => 'USER', 'servomatproducts_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'List'), 'servomatproducts_show' => 'USER', 'servomatproducts_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'Show'))), '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'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), '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'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'preview_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_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('WapplerSystems\\WsT3bootstrap\\Frontend\\Menu\\DataProcessing\\FlexibleMenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'previewimage'))))), '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')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'wst3bootstrap_accordion' => '< lib.contentElement', 'wst3bootstrap_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Accordion')), 'wst3bootstrap_alert' => '< lib.contentElement', 'wst3bootstrap_alert.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Alert')), 'wst3bootstrap_buttongroup' => '< lib.contentElement', 'wst3bootstrap_buttongroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Buttongroup')), 'wst3bootstrap_buttonlink' => '< lib.contentElement', 'wst3bootstrap_buttonlink.' => array('templateName' => 'Flux', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Buttonlink')), 'wst3bootstrap_card' => '< lib.contentElement', 'wst3bootstrap_card.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Card')), 'wst3bootstrap_cards' => '< lib.contentElement', 'wst3bootstrap_cards.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Cards')), 'wst3bootstrap_carousel' => '< lib.contentElement', 'wst3bootstrap_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Carousel')), 'wst3bootstrap_container' => '< lib.contentElement', 'wst3bootstrap_container.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Container')), 'wst3bootstrap_example' => '< lib.contentElement', 'wst3bootstrap_example.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Example')), 'wst3bootstrap_fluidrow' => '< lib.contentElement', 'wst3bootstrap_fluidrow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Fluidrow')), 'wst3bootstrap_media' => '< lib.contentElement', 'wst3bootstrap_media.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Media')), 'wst3bootstrap_megamenu' => '< lib.contentElement', 'wst3bootstrap_megamenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Megamenu')), 'wst3bootstrap_panel' => '< lib.contentElement', 'wst3bootstrap_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Panel')), 'wst3bootstrap_tabs' => '< lib.contentElement', 'wst3bootstrap_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Tabs')), 'wst3bootstrap_thumbnail' => '< lib.contentElement', 'wst3bootstrap_thumbnail.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Thumbnail')), 'wst3bootstrap_well' => '< lib.contentElement', 'wst3bootstrap_well.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Well')), 'servomattemplate_servomatcard' => '< lib.contentElement', 'servomattemplate_servomatcard.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Servomattemplate', 'pluginName' => 'Servomatcard')), 'servomattemplate_servomatproductslider' => '< lib.contentElement', 'servomattemplate_servomatproductslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Servomattemplate', 'pluginName' => 'Servomatproductslider')), 'ws_slider' => '< lib.contentElement', 'ws_slider.' => array('templateName' => 'Slider', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Layouts/'), 'settings.' => array('slider.' => array('defaultRenderer' => 'flexslider', 'renderer.' => array('flexslider.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'true', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'slickslider.' => array('accessibility' => 'true', 'adaptiveHeight' => 'false', 'autoplay' => 'false', 'autoplaySpeed' => '3000', 'arrows' => 'true', 'appendArrows' => '$(element) #todo: look into default $(element) here', 'appendDots' => '$(element) #todo: look into default $(element) here', 'prevArrow' => '<button type="button" class="slick-prev">Previous</button>', 'nextArrow' => '<button type="button" class="slick-next">Next</button>', 'centerMode' => 'false', 'centerPadding' => '50px', 'cssEase' => 'ease', 'customPaging' => '#default n/a', 'dots' => 'false', 'dotsClass' => 'slick-dots', 'draggable' => 'true', 'fade' => 'false', 'focusOnSelect' => 'false', 'easing' => 'linear', 'edgeFriction' => '0.15', 'infinite' => 'true', 'initialSlide' => 'true', 'lazyLoad' => 'ondemand', 'mobileFirst' => 'false', 'pauseOnFocus' => 'true', 'pauseOnHover' => 'true', 'pauseOnDotsHover' => 'false', 'respondTo' => 'window', 'rows' => '1', 'slidesPerRow' => '1', 'slidesToShow' => '1', 'slidesToScroll' => '1', 'speed' => '300', 'swipe' => 'true', 'swipeToSlide' => 'false', 'touchMove' => 'true', 'touchThreshold' => '5', 'useCSS' => 'true', 'useTransform' => 'true', 'variableWidth' => 'false', 'vertical' => 'false', 'verticalSwiping' => 'false', 'rtl' => 'false', 'waitForAnimate' => 'true', 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '4'), '992.' => array('items' => '4'), '1200.' => array('items' => '4')))))), 'dataProcessing.' => array('WapplerSystems\\WsSlider\\DataProcessing\\SliderProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wsslider_domain_model_item', 'as' => 'items', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'content_uid=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'foreground_media'), 'as' => 'foregroundMedia'))))), 'card' => '< lib.contentElement', 'card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wst3bootstrap_card_element', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'field = \'frontside\' AND tt_content=|'), 'orderBy' => 'sorting', 'as' => 'frontsideElements', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'media'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '40.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '50.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '30.' => array('table' => 'tx_wst3bootstrap_card_element', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'field = \'backside\' AND tt_content=|'), 'orderBy' => 'sorting', 'as' => 'backsideElements', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'media'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '40.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '50.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))))), 'compare_slider' => '< lib.contentElement', 'compare_slider.' => array('layoutRootPaths.' => array('EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'templateName' => 'CompareSlider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'media'))), 'counter_bar' => '< lib.contentElement', 'counter_bar.' => array('layoutRootPaths.' => array('EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'templateName' => 'Counterbar', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_wst3bootstrap_counterbar_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\FlexFormProcessor')), 'onepage_menu' => '< lib.contentElement', 'onepage_menu.' => array('templateName' => 'OnePageMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu' => '1', 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting ASC')))))))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // 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'))), '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'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'wst3bootstrap_page' => 'USER', 'wst3bootstrap_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Page'), 'wst3bootstrap_menu' => 'USER', 'wst3bootstrap_menu.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Menu'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'googletagmanager_tracking' => 'USER', 'googletagmanager_tracking.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking'), 'googletagmanager_datalayer' => 'USER', 'googletagmanager_datalayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'DataLayer'), 'servomatpartners_list' => 'USER', 'servomatpartners_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatPartners', 'pluginName' => 'List'), 'servomatproducts_list' => 'USER', 'servomatproducts_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'List'), 'servomatproducts_show' => 'USER', 'servomatproducts_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'Show'))), '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'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), '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'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'preview_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_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('WapplerSystems\\WsT3bootstrap\\Frontend\\Menu\\DataProcessing\\FlexibleMenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'previewimage'))))), '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')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'wst3bootstrap_accordion' => '< lib.contentElement', 'wst3bootstrap_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Accordion')), 'wst3bootstrap_alert' => '< lib.contentElement', 'wst3bootstrap_alert.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Alert')), 'wst3bootstrap_buttongroup' => '< lib.contentElement', 'wst3bootstrap_buttongroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Buttongroup')), 'wst3bootstrap_buttonlink' => '< lib.contentElement', 'wst3bootstrap_buttonlink.' => array('templateName' => 'Flux', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Buttonlink')), 'wst3bootstrap_card' => '< lib.contentElement', 'wst3bootstrap_card.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Card')), 'wst3bootstrap_cards' => '< lib.contentElement', 'wst3bootstrap_cards.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Cards')), 'wst3bootstrap_carousel' => '< lib.contentElement', 'wst3bootstrap_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Carousel')), 'wst3bootstrap_container' => '< lib.contentElement', 'wst3bootstrap_container.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Container')), 'wst3bootstrap_example' => '< lib.contentElement', 'wst3bootstrap_example.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Example')), 'wst3bootstrap_fluidrow' => '< lib.contentElement', 'wst3bootstrap_fluidrow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Fluidrow')), 'wst3bootstrap_media' => '< lib.contentElement', 'wst3bootstrap_media.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Media')), 'wst3bootstrap_megamenu' => '< lib.contentElement', 'wst3bootstrap_megamenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Megamenu')), 'wst3bootstrap_panel' => '< lib.contentElement', 'wst3bootstrap_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Panel')), 'wst3bootstrap_tabs' => '< lib.contentElement', 'wst3bootstrap_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Tabs')), 'wst3bootstrap_thumbnail' => '< lib.contentElement', 'wst3bootstrap_thumbnail.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Thumbnail')), 'wst3bootstrap_well' => '< lib.contentElement', 'wst3bootstrap_well.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Well')), 'servomattemplate_servomatcard' => '< lib.contentElement', 'servomattemplate_servomatcard.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Servomattemplate', 'pluginName' => 'Servomatcard')), 'servomattemplate_servomatproductslider' => '< lib.contentElement', 'servomattemplate_servomatproductslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Servomattemplate', 'pluginName' => 'Servomatproductslider')), 'ws_slider' => '< lib.contentElement', 'ws_slider.' => array('templateName' => 'Slider', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Layouts/'), 'settings.' => array('slider.' => array('defaultRenderer' => 'flexslider', 'renderer.' => array('flexslider.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'true', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'slickslider.' => array('accessibility' => 'true', 'adaptiveHeight' => 'false', 'autoplay' => 'false', 'autoplaySpeed' => '3000', 'arrows' => 'true', 'appendArrows' => '$(element) #todo: look into default $(element) here', 'appendDots' => '$(element) #todo: look into default $(element) here', 'prevArrow' => '<button type="button" class="slick-prev">Previous</button>', 'nextArrow' => '<button type="button" class="slick-next">Next</button>', 'centerMode' => 'false', 'centerPadding' => '50px', 'cssEase' => 'ease', 'customPaging' => '#default n/a', 'dots' => 'false', 'dotsClass' => 'slick-dots', 'draggable' => 'true', 'fade' => 'false', 'focusOnSelect' => 'false', 'easing' => 'linear', 'edgeFriction' => '0.15', 'infinite' => 'true', 'initialSlide' => 'true', 'lazyLoad' => 'ondemand', 'mobileFirst' => 'false', 'pauseOnFocus' => 'true', 'pauseOnHover' => 'true', 'pauseOnDotsHover' => 'false', 'respondTo' => 'window', 'rows' => '1', 'slidesPerRow' => '1', 'slidesToShow' => '1', 'slidesToScroll' => '1', 'speed' => '300', 'swipe' => 'true', 'swipeToSlide' => 'false', 'touchMove' => 'true', 'touchThreshold' => '5', 'useCSS' => 'true', 'useTransform' => 'true', 'variableWidth' => 'false', 'vertical' => 'false', 'verticalSwiping' => 'false', 'rtl' => 'false', 'waitForAnimate' => 'true', 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '4'), '992.' => array('items' => '4'), '1200.' => array('items' => '4')))))), 'dataProcessing.' => array('WapplerSystems\\WsSlider\\DataProcessing\\SliderProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wsslider_domain_model_item', 'as' => 'items', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'content_uid=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'foreground_media'), 'as' => 'foregroundMedia'))))), 'card' => '< lib.contentElement', 'card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wst3bootstrap_card_element', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'field = \'frontside\' AND tt_content=|'), 'orderBy' => 'sorting', 'as' => 'frontsideElements', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'media'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '40.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '50.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '30.' => array('table' => 'tx_wst3bootstrap_card_element', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'field = \'backside\' AND tt_content=|'), 'orderBy' => 'sorting', 'as' => 'backsideElements', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'media'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '40.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '50.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))))), 'compare_slider' => '< lib.contentElement', 'compare_slider.' => array('layoutRootPaths.' => array('EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'templateName' => 'CompareSlider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'media'))), 'counter_bar' => '< lib.contentElement', 'counter_bar.' => array('layoutRootPaths.' => array('EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'templateName' => 'Counterbar', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_wst3bootstrap_counterbar_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\FlexFormProcessor')), 'onepage_menu' => '< lib.contentElement', 'onepage_menu.' => array('templateName' => 'OnePageMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu' => '1', 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting ASC')))))))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'wst3bootstrap_page' => 'USER', 'wst3bootstrap_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Page'), 'wst3bootstrap_menu' => 'USER', 'wst3bootstrap_menu.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Menu'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'googletagmanager_tracking' => 'USER', 'googletagmanager_tracking.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking'), 'googletagmanager_datalayer' => 'USER', 'googletagmanager_datalayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'DataLayer'), 'servomatpartners_list' => 'USER', 'servomatpartners_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatPartners', 'pluginName' => 'List'), 'servomatproducts_list' => 'USER', 'servomatproducts_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'List'), 'servomatproducts_show' => 'USER', 'servomatproducts_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'Show'))), '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'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), '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'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'preview_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_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('WapplerSystems\\WsT3bootstrap\\Frontend\\Menu\\DataProcessing\\FlexibleMenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'previewimage'))))), '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')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'wst3bootstrap_accordion' => '< lib.contentElement', 'wst3bootstrap_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Accordion')), 'wst3bootstrap_alert' => '< lib.contentElement', 'wst3bootstrap_alert.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Alert')), 'wst3bootstrap_buttongroup' => '< lib.contentElement', 'wst3bootstrap_buttongroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Buttongroup')), 'wst3bootstrap_buttonlink' => '< lib.contentElement', 'wst3bootstrap_buttonlink.' => array('templateName' => 'Flux', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Buttonlink')), 'wst3bootstrap_card' => '< lib.contentElement', 'wst3bootstrap_card.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Card')), 'wst3bootstrap_cards' => '< lib.contentElement', 'wst3bootstrap_cards.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Cards')), 'wst3bootstrap_carousel' => '< lib.contentElement', 'wst3bootstrap_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Carousel')), 'wst3bootstrap_container' => '< lib.contentElement', 'wst3bootstrap_container.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Container')), 'wst3bootstrap_example' => '< lib.contentElement', 'wst3bootstrap_example.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Example')), 'wst3bootstrap_fluidrow' => '< lib.contentElement', 'wst3bootstrap_fluidrow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Fluidrow')), 'wst3bootstrap_media' => '< lib.contentElement', 'wst3bootstrap_media.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Media')), 'wst3bootstrap_megamenu' => '< lib.contentElement', 'wst3bootstrap_megamenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Megamenu')), 'wst3bootstrap_panel' => '< lib.contentElement', 'wst3bootstrap_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Panel')), 'wst3bootstrap_tabs' => '< lib.contentElement', 'wst3bootstrap_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Tabs')), 'wst3bootstrap_thumbnail' => '< lib.contentElement', 'wst3bootstrap_thumbnail.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Thumbnail')), 'wst3bootstrap_well' => '< lib.contentElement', 'wst3bootstrap_well.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Well')), 'servomattemplate_servomatcard' => '< lib.contentElement', 'servomattemplate_servomatcard.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Servomattemplate', 'pluginName' => 'Servomatcard')), 'servomattemplate_servomatproductslider' => '< lib.contentElement', 'servomattemplate_servomatproductslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Servomattemplate', 'pluginName' => 'Servomatproductslider')), 'ws_slider' => '< lib.contentElement', 'ws_slider.' => array('templateName' => 'Slider', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Layouts/'), 'settings.' => array('slider.' => array('defaultRenderer' => 'flexslider', 'renderer.' => array('flexslider.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'true', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'slickslider.' => array('accessibility' => 'true', 'adaptiveHeight' => 'false', 'autoplay' => 'false', 'autoplaySpeed' => '3000', 'arrows' => 'true', 'appendArrows' => '$(element) #todo: look into default $(element) here', 'appendDots' => '$(element) #todo: look into default $(element) here', 'prevArrow' => '<button type="button" class="slick-prev">Previous</button>', 'nextArrow' => '<button type="button" class="slick-next">Next</button>', 'centerMode' => 'false', 'centerPadding' => '50px', 'cssEase' => 'ease', 'customPaging' => '#default n/a', 'dots' => 'false', 'dotsClass' => 'slick-dots', 'draggable' => 'true', 'fade' => 'false', 'focusOnSelect' => 'false', 'easing' => 'linear', 'edgeFriction' => '0.15', 'infinite' => 'true', 'initialSlide' => 'true', 'lazyLoad' => 'ondemand', 'mobileFirst' => 'false', 'pauseOnFocus' => 'true', 'pauseOnHover' => 'true', 'pauseOnDotsHover' => 'false', 'respondTo' => 'window', 'rows' => '1', 'slidesPerRow' => '1', 'slidesToShow' => '1', 'slidesToScroll' => '1', 'speed' => '300', 'swipe' => 'true', 'swipeToSlide' => 'false', 'touchMove' => 'true', 'touchThreshold' => '5', 'useCSS' => 'true', 'useTransform' => 'true', 'variableWidth' => 'false', 'vertical' => 'false', 'verticalSwiping' => 'false', 'rtl' => 'false', 'waitForAnimate' => 'true', 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '4'), '992.' => array('items' => '4'), '1200.' => array('items' => '4')))))), 'dataProcessing.' => array('WapplerSystems\\WsSlider\\DataProcessing\\SliderProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wsslider_domain_model_item', 'as' => 'items', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'content_uid=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'foreground_media'), 'as' => 'foregroundMedia'))))), 'card' => '< lib.contentElement', 'card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wst3bootstrap_card_element', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'field = \'frontside\' AND tt_content=|'), 'orderBy' => 'sorting', 'as' => 'frontsideElements', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'media'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '40.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '50.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '30.' => array('table' => 'tx_wst3bootstrap_card_element', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'field = \'backside\' AND tt_content=|'), 'orderBy' => 'sorting', 'as' => 'backsideElements', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'media'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '40.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '50.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))))), 'compare_slider' => '< lib.contentElement', 'compare_slider.' => array('layoutRootPaths.' => array('EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'templateName' => 'CompareSlider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'media'))), 'counter_bar' => '< lib.contentElement', 'counter_bar.' => array('layoutRootPaths.' => array('EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'templateName' => 'Counterbar', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_wst3bootstrap_counterbar_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\FlexFormProcessor')), 'onepage_menu' => '< lib.contentElement', 'onepage_menu.' => array('templateName' => 'OnePageMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu' => '1', 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting ASC')))))), 'tt_content')
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'wst3bootstrap_page' => 'USER', 'wst3bootstrap_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Page'), 'wst3bootstrap_menu' => 'USER', 'wst3bootstrap_menu.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Menu'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'googletagmanager_tracking' => 'USER', 'googletagmanager_tracking.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking'), 'googletagmanager_datalayer' => 'USER', 'googletagmanager_datalayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'DataLayer'), 'servomatpartners_list' => 'USER', 'servomatpartners_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatPartners', 'pluginName' => 'List'), 'servomatproducts_list' => 'USER', 'servomatproducts_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'List'), 'servomatproducts_show' => 'USER', 'servomatproducts_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ServomatProducts', 'pluginName' => 'Show'))), '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'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), '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'), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\GridLayoutProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'preview_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_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('WapplerSystems\\WsT3bootstrap\\Frontend\\Menu\\DataProcessing\\FlexibleMenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'previewimage'))))), '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')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'wst3bootstrap_accordion' => '< lib.contentElement', 'wst3bootstrap_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Accordion')), 'wst3bootstrap_alert' => '< lib.contentElement', 'wst3bootstrap_alert.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Alert')), 'wst3bootstrap_buttongroup' => '< lib.contentElement', 'wst3bootstrap_buttongroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Buttongroup')), 'wst3bootstrap_buttonlink' => '< lib.contentElement', 'wst3bootstrap_buttonlink.' => array('templateName' => 'Flux', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Buttonlink')), 'wst3bootstrap_card' => '< lib.contentElement', 'wst3bootstrap_card.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Card')), 'wst3bootstrap_cards' => '< lib.contentElement', 'wst3bootstrap_cards.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Cards')), 'wst3bootstrap_carousel' => '< lib.contentElement', 'wst3bootstrap_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Carousel')), 'wst3bootstrap_container' => '< lib.contentElement', 'wst3bootstrap_container.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Container')), 'wst3bootstrap_example' => '< lib.contentElement', 'wst3bootstrap_example.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Example')), 'wst3bootstrap_fluidrow' => '< lib.contentElement', 'wst3bootstrap_fluidrow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Fluidrow')), 'wst3bootstrap_media' => '< lib.contentElement', 'wst3bootstrap_media.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Media')), 'wst3bootstrap_megamenu' => '< lib.contentElement', 'wst3bootstrap_megamenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Megamenu')), 'wst3bootstrap_panel' => '< lib.contentElement', 'wst3bootstrap_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Panel')), 'wst3bootstrap_tabs' => '< lib.contentElement', 'wst3bootstrap_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Tabs')), 'wst3bootstrap_thumbnail' => '< lib.contentElement', 'wst3bootstrap_thumbnail.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Thumbnail')), 'wst3bootstrap_well' => '< lib.contentElement', 'wst3bootstrap_well.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsT3bootstrap', 'pluginName' => 'Well')), 'servomattemplate_servomatcard' => '< lib.contentElement', 'servomattemplate_servomatcard.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Servomattemplate', 'pluginName' => 'Servomatcard')), 'servomattemplate_servomatproductslider' => '< lib.contentElement', 'servomattemplate_servomatproductslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Servomattemplate', 'pluginName' => 'Servomatproductslider')), 'ws_slider' => '< lib.contentElement', 'ws_slider.' => array('templateName' => 'Slider', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/', 'EXT:servomattemplate/Resources/Private/Extensions/ws_slider/Layouts/'), 'settings.' => array('slider.' => array('defaultRenderer' => 'flexslider', 'renderer.' => array('flexslider.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'true', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'slickslider.' => array('accessibility' => 'true', 'adaptiveHeight' => 'false', 'autoplay' => 'false', 'autoplaySpeed' => '3000', 'arrows' => 'true', 'appendArrows' => '$(element) #todo: look into default $(element) here', 'appendDots' => '$(element) #todo: look into default $(element) here', 'prevArrow' => '<button type="button" class="slick-prev">Previous</button>', 'nextArrow' => '<button type="button" class="slick-next">Next</button>', 'centerMode' => 'false', 'centerPadding' => '50px', 'cssEase' => 'ease', 'customPaging' => '#default n/a', 'dots' => 'false', 'dotsClass' => 'slick-dots', 'draggable' => 'true', 'fade' => 'false', 'focusOnSelect' => 'false', 'easing' => 'linear', 'edgeFriction' => '0.15', 'infinite' => 'true', 'initialSlide' => 'true', 'lazyLoad' => 'ondemand', 'mobileFirst' => 'false', 'pauseOnFocus' => 'true', 'pauseOnHover' => 'true', 'pauseOnDotsHover' => 'false', 'respondTo' => 'window', 'rows' => '1', 'slidesPerRow' => '1', 'slidesToShow' => '1', 'slidesToScroll' => '1', 'speed' => '300', 'swipe' => 'true', 'swipeToSlide' => 'false', 'touchMove' => 'true', 'touchThreshold' => '5', 'useCSS' => 'true', 'useTransform' => 'true', 'variableWidth' => 'false', 'vertical' => 'false', 'verticalSwiping' => 'false', 'rtl' => 'false', 'waitForAnimate' => 'true', 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '4'), '992.' => array('items' => '4'), '1200.' => array('items' => '4')))))), 'dataProcessing.' => array('WapplerSystems\\WsSlider\\DataProcessing\\SliderProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wsslider_domain_model_item', 'as' => 'items', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'content_uid=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'foreground_media'), 'as' => 'foregroundMedia'))))), 'card' => '< lib.contentElement', 'card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wst3bootstrap_card_element', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'field = \'frontside\' AND tt_content=|'), 'orderBy' => 'sorting', 'as' => 'frontsideElements', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'media'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '40.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '50.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '30.' => array('table' => 'tx_wst3bootstrap_card_element', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'field = \'backside\' AND tt_content=|'), 'orderBy' => 'sorting', 'as' => 'backsideElements', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'media'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '40.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '50.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))))), 'compare_slider' => '< lib.contentElement', 'compare_slider.' => array('layoutRootPaths.' => array('EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'templateName' => 'CompareSlider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'media'))), 'counter_bar' => '< lib.contentElement', 'counter_bar.' => array('layoutRootPaths.' => array('EXT:ws_t3bootstrap/Resources/Private/Templates/Extensions/fluid_styled_content/Layouts/'), 'templateName' => 'Counterbar', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_wst3bootstrap_counterbar_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))), 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\FlexFormProcessor')), 'onepage_menu' => '< lib.contentElement', 'onepage_menu.' => array('templateName' => 'OnePageMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu' => '1', 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting ASC')))))), '')
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/RecordsContentObject.php line 128
                            $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                            $GLOBALS['TSFE']->currentRecord = $val['table'] . ':' . $val['id'];
                            $this->cObj->lastChanged($row['tstamp'] ?? 0);
                            $cObj->start($row, $val['table'], $this->request);
                            $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                            $theValue .= $tmpValue;
                        }
                    }
                }
at TYPO3\CMS\Frontend\ContentObject\RecordsContentObject->render(array('tables' => 'tt_content', 'source' => 60, 'dontCheckPid' => 1))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // 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' => 60, 'dontCheckPid' => 1))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('RECORDS', array('tables' => 'tt_content', 'source' => 60, 'dontCheckPid' => 1))
in /var/www/web32/html/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' => 60, 'rowDescription' => '', 'pid' => 21, 'tstamp' => 1642789711, 'crdate' => 1642288857, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'editlock' => 0, 'sys_language_uid' => 0, 'l18n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l18n_diffsource' => '{"CType":"","colPos":"","header":"","header_layout":"","header_position":"","date":"","header_link":"","subheader":"","list_type":"","pi_flexform":"","pages":"","recursive":"","layout":"","bg_color_class":"","frame_class":"","space_before_class":"","space_after_class":"","padding_top_class":"","padding_bottom_class":"","full_width":"","fixed_image":"","sectionIndex":"","linkToTop":"","sys_language_uid":"","hidden":"","starttime":"","endtime":"","fe_group":"","editlock":"","categories":"","rowDescription":""}', 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 'CType' => 'list', 'header' => 'Produkt Detailansicht', 'header_position' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => '', 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => null, 'pages' => '', 'colPos' => 0, 'subheader' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'servomatproducts_show', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'filelink_sorting_direction' => 'ascending', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.selectedCategory"> <value index="vDEF">1</value> </field> <field index="settings.imageDisplayType"> <value index="vDEF">lightbox</value> </field> <field index="settings.showFurtherProducts"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'categories' => 0, 'selected_categories' => null, 'tx_impexp_origuid' => 0, 'tx_flux_migrated_version' => null, 'image_classes' => '', 'element_classes' => '', 'effects' => '', 'imagecols_xs' => 1, 'imagecols_sm' => 1, 'imagecols_md' => 1, 'imagecols_lg' => 1, 'imagecols_xl' => 1, 'background_media' => 0, 'html_tag' => 'div', 'bg_color_class' => '', 'padding_top_class' => '', 'padding_bottom_class' => '', 'footer' => '', 'footer_position' => '', 'footer_link' => '', 'footer_layout' => '0', 'tx_wst3bootstrap_card_elements' => 0, 'tx_wst3bootstrap_card_elements_backside' => 0, 'image_overlay' => 0, 'tx_wst3bootstrap_counterbar_item' => 0, 'icon' => '', 'icon_color' => '', 'icon_style' => '', 'icon_size' => '', 'form_layout' => '', 'grid_layout' => '', 'icon_position' => 0, 'full_width' => 1, 'fixed_image' => 0, 'levels' => 7, 'tx_wst3bootstrap_migrated_version' => '', 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => 'Default', 'tx_news_related_news' => 0))
in /var/www/web32/html/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' => 60, 'rowDescription' => '', 'pid' => 21, 'tstamp' => 1642789711, 'crdate' => 1642288857, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'editlock' => 0, 'sys_language_uid' => 0, 'l18n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l18n_diffsource' => '{"CType":"","colPos":"","header":"","header_layout":"","header_position":"","date":"","header_link":"","subheader":"","list_type":"","pi_flexform":"","pages":"","recursive":"","layout":"","bg_color_class":"","frame_class":"","space_before_class":"","space_after_class":"","padding_top_class":"","padding_bottom_class":"","full_width":"","fixed_image":"","sectionIndex":"","linkToTop":"","sys_language_uid":"","hidden":"","starttime":"","endtime":"","fe_group":"","editlock":"","categories":"","rowDescription":""}', 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 'CType' => 'list', 'header' => 'Produkt Detailansicht', 'header_position' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => '', 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => null, 'pages' => '', 'colPos' => 0, 'subheader' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'servomatproducts_show', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'filelink_sorting_direction' => 'ascending', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.selectedCategory"> <value index="vDEF">1</value> </field> <field index="settings.imageDisplayType"> <value index="vDEF">lightbox</value> </field> <field index="settings.showFurtherProducts"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'categories' => 0, 'selected_categories' => null, 'tx_impexp_origuid' => 0, 'tx_flux_migrated_version' => null, 'image_classes' => '', 'element_classes' => '', 'effects' => '', 'imagecols_xs' => 1, 'imagecols_sm' => 1, 'imagecols_md' => 1, 'imagecols_lg' => 1, 'imagecols_xl' => 1, 'background_media' => 0, 'html_tag' => 'div', 'bg_color_class' => '', 'padding_top_class' => '', 'padding_bottom_class' => '', 'footer' => '', 'footer_position' => '', 'footer_link' => '', 'footer_layout' => '0', 'tx_wst3bootstrap_card_elements' => 0, 'tx_wst3bootstrap_card_elements_backside' => 0, 'image_overlay' => 0, 'tx_wst3bootstrap_counterbar_item' => 0, 'icon' => '', 'icon_color' => '', 'icon_style' => '', 'icon_size' => '', 'form_layout' => '', 'grid_layout' => '', 'icon_position' => 0, 'full_width' => 1, 'fixed_image' => 0, 'levels' => 7, 'tx_wst3bootstrap_migrated_version' => '', 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => 'Default', 'tx_news_related_news' => 0)))
in /var/www/web32/html/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 /var/www/web32/html/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 /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 264
     */
    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 /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 252
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $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 /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 524
     */
    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 /var/www/web32/html/typo3temp/var/cache/code/fluid_template/Standard_action_1Column_1f987c84c61af2874fee160b6b9073718a8ef0dd.php line 115
$arguments8['slideCollectReverse'] = false;
$arguments8['as'] = NULL;
$arguments8['column'] = 0;

$output7 .= FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper::renderStatic($arguments8, $renderChildrenClosure9, $renderingContext);

$output7 .= '

            ';
at Standard_action_1Column_1f987c84c61af2874fee160b6b9073718a8ef0dd->{closure}()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 304
    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 /var/www/web32/html/typo3conf/ext/ws_t3bootstrap/Classes/ViewHelpers/Variable/Register/SetViewHelper.php line 40
        if ($this->arguments['value'] === 'true') $this->arguments['value'] = true;
        if ($this->arguments['value'] === 'false') $this->arguments['value'] = false;
        $GLOBALS['TSFE']->register[$this->arguments['name']] = $this->arguments['value'];

        $output = $this->renderChildren();

        if ($oldValue === null) {
            unset($GLOBALS['TSFE']->register[$this->arguments['name']]);
        } else {
at WapplerSystems\WsT3bootstrap\ViewHelpers\Variable\Register\SetViewHelper->render()
at call_user_func(array(object(WapplerSystems\WsT3bootstrap\ViewHelpers\Variable\Register\SetViewHelper), 'render'))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 264
     */
    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 /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 252
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $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('WapplerSystems\\WsT3bootstrap\\ViewHelpers\\Variable\\Register\\SetViewHelper', array('value' => 'true', 'name' => 'containerless'), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 524
     */
    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('value' => 'true', 'name' => 'containerless'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3temp/var/cache/code/fluid_template/Standard_action_1Column_1f987c84c61af2874fee160b6b9073718a8ef0dd.php line 207
$arguments5['name'] = NULL;
$arguments5['name'] = 'containerless';
$arguments5['value'] = 'true';

$output4 .= WapplerSystems\WsT3bootstrap\ViewHelpers\Variable\Register\SetViewHelper::renderStatic($arguments5, $renderChildrenClosure6, $renderingContext);

$output4 .= '
    ';

at Standard_action_1Column_1f987c84c61af2874fee160b6b9073718a8ef0dd->section_4f9be057f0ea5d2ba72fd2c810e8d7b9aa98b469(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('Content', array(), false)
in /var/www/web32/html/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 173
            $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' => 'Content', '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 /var/www/web32/html/typo3temp/var/cache/code/fluid_template/layout_Page_html_eb94370e9d88093d5d473bc7a3416d9ec589da66.php line 208
$arguments20['contentAs'] = NULL;
$arguments20['debug'] = true;
$arguments20['section'] = 'Content';

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

$output0 .= '
        </main>

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

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

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page', 'dataProcessing.' => array('WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\SiteConfigProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\PageHeroProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\SiteProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\LanguageMenuProcessor'), 'templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'levelfield:-2,backend_layout_next_level,slide', 'override.' => array('field' => 'backend_layout'), 'split.' => array('token' => '__', 'returnKey' => '1')), 'ifEmpty' => '1Column')), 'layoutRootPaths.' => array('EXT:servomattemplate/Resources/Private/Layouts/'), 'templateRootPaths.' => array('EXT:servomattemplate/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:servomattemplate/Resources/Private/Partials/'), 'variables.' => array(), 'settings.' => array('logo' => 'EXT:servomattemplate/Resources/Public/Images/rheavendors-servomat-logo.png', 'searchPagePID' => '', 'policyPid' => '40', 'menu.' => array('homePageUID' => '1', 'partnerPageUid' => '33', 'showAccessProtectedPages' => '0', 'main.' => array('entryLevel' => '0'), 'sub.' => array('entryLevel' => '1'), 'user.' => array('pageUid' => '34'), 'footer.' => array('pageUid' => '53', 'legalPageUid' => '38', 'socialPageUid' => '60'), 'language.' => array('activated' => '0', 'hideCurrent' => '1', 'layout' => 'Dropdown', 'itemLayout' => 'FlagAndLabel'), 'mobile.' => array('cache' => '0')), 'config.' => array('pageTitleProviders.' => array('record.' => array('provider' => 'TYPO3\\CMS\\Core\\PageTitle\\RecordPageTitleProvider'), 'seo.' => array('provider' => 'TYPO3\\CMS\\Seo\\PageTitle\\SeoTitlePageTitleProvider', 'before' => 'record'), 'news.' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'before' => 'altPageTitle,record,seo')), 'tx_extbase.' => array('persistence.' => array('classes.' => array('GeorgRinger\News\Domain\Model\News.' => array('subclasses.' => array('GeorgRinger\\News\\Domain\\Model\\NewsDefault', 'GeorgRinger\\News\\Domain\\Model\\NewsInternal', 'GeorgRinger\\News\\Domain\\Model\\NewsExternal')), 'GeorgRinger\News\Domain\Model\NewsDefault.' => array('mapping.' => array('recordType' => '0', 'tableName' => 'tx_news_domain_model_news')), 'GeorgRinger\News\Domain\Model\NewsInternal.' => array('mapping.' => array('recordType' => '1', 'tableName' => 'tx_news_domain_model_news')), 'GeorgRinger\News\Domain\Model\NewsExternal.' => array('mapping.' => array('recordType' => '2', 'tableName' => 'tx_news_domain_model_news')), 'WapplerSystems\WsT3bootstrap\Domain\Model\Page.' => array('mapping.' => array('tableName' => 'pages'))))), 'sourceopt.' => array('enabled' => '1', 'headerComment' => '', 'formatHtml' => '0', 'formatHtml.' => array('tabSize' => '', 'debugComment' => '0'), 'dropEmptySpaceChar' => '0', 'removeGenerator' => '1', 'removeComments' => '1', 'removeComments.' => array('keep.' => array('/This website is powered by TYPO3/usi', '/^\\[if/usi', '/^<!\\[endif/usi', '/^INT_SCRIPT\\./usi', '/^TDS_/usi', '/^HD_/usi', '/INTsubpart_/usi', '/^googleoff_/usi', '/^googleon_/usi', '/^gps(e|s)/usi', '/^TYPO3SEARCH_/usi'))), 'svgstore.' => array('enabled' => '1', 'fileSize' => '50000'), 'renderCharset' => 'utf-8', 'metaCharset' => 'utf-8', 'sendCacheHeaders' => '1', 'doctype' => 'html5', 'absRefPrefix' => 'auto', 'removeDefaultJS' => 'external', 'typolinkEnableLinksAcrossDomains' => '1', 'sword_standAlone' => '0', 'sword_noMixedCase' => '0', 'intTarget' => '_self', 'extTarget' => '_blank', 'spamProtectEmailAddresses' => '-2', 'spamProtectEmailAddresses_atSubst' => '[@~@]', 'spamProtectEmailAddresses_lastDotSubst' => '[punkt]', 'no_cache' => '0', 'additionalHeaders' => 'Content-Type:text/html;charset=utf-8', 'content_from_pid_allowOutsideDomain' => '1', 'pageTitleFirst' => '1', 'pageTitleSeparator' => '|', 'pageTitleSeparator.' => array('noTrimWrap' => '| | |'), 'headerComment' => '', 'simulateStaticDocuments' => '0', 'admPanel' => '0', 'xhtml_cleaning' => 'all', 'disablePrefixComment' => '0', 'contentObjectExceptionHandler' => '0', 'typolinkLinkAccessRestrictedPages' => '', 'index_enable' => '0', 'index_externals' => '0', 'index_metatags' => '0'), 'header.' => array('searchbox' => '1', 'breadcrumb' => '0', 'overlayMenuSection' => '0'), 'footer.' => array('contentUid' => '64', 'contentNewsletterInvitationUid' => '65'), 'callToAction.' => array('activated' => '0', 'email.' => array('pageId' => '', 'iconClass' => 'far fa-envelope', 'order' => '1', 'modal' => '1', 'label' => 'E-Mail'), 'custom.' => array('1.' => array('pageId' => '', 'label' => 'Demo', 'order' => '2', 'iconClass' => 'fas fa-desktop'), '2.' => array('pageId' => '', 'label' => '', 'order' => '2', 'iconClass' => '{$callToAction.custom.2.class}')), 'items.' => array('facebook.' => array('link' => '', 'title' => 'Facebook', 'iconClass' => 'fab fa-facebook-f', 'btnClass' => 'btn-facebook', 'order' => '2', 'label' => 'Facebook'), 'youtube.' => array('link' => '', 'title' => 'Youtube', 'iconClass' => 'fab fa-youtube', 'btnClass' => 'btn-youtube', 'order' => '3', 'label' => 'Youtube'), 'instagram.' => array('link' => '', 'title' => 'Instagram', 'iconClass' => 'fab fa-instagram', 'btnClass' => 'btn-instagram', 'order' => '4', 'label' => 'Instagram'), 'pinterest.' => array('link' => '', 'title' => 'Pinterest', 'iconClass' => 'fab fa-pinterest', 'btnClass' => 'btn-pinterest', 'order' => '5', 'label' => 'Pinterest'), 'xing.' => array('link' => '', 'title' => 'Xing', 'iconClass' => 'fab fa-xing', 'btnClass' => 'btn-xing', 'order' => '6', 'label' => 'Xing'), 'linkedin.' => array('link' => '', 'title' => 'LinkedIn', 'iconClass' => 'fab fa-linkedin', 'btnClass' => 'btn-linkedin', 'order' => '7', 'label' => 'LinkedIn'))), 'hero.' => array('xl.' => array('width' => '1920', 'mediaquery' => '(min-width: 1200px)', 'cropVariant' => 'full'), 'lg.' => array('width' => '1199.98', 'mediaquery' => '(max-width: 1199.98px)', 'cropVariant' => 'lg'), 'md.' => array('width' => '991.98', 'mediaquery' => '(max-width: 991.98px)', 'cropVariant' => 'md'), 'sm.' => array('width' => '767.98', 'mediaquery' => '(max-width: 767.98px)', 'cropVariant' => 'sm'), 'xs.' => array('width' => '575.98', 'mediaquery' => '(max-width: 575.98px)', 'cropVariant' => 'xs')), 'searchTerm' => '{search_term_string}', 'layout' => 'full', 'lazyLoading' => 'lazy', 'pageBrowser.' => array('excludedUids' => '6, 25, 37, 39, 42'))))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // 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('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page', 'dataProcessing.' => array('WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\SiteConfigProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\PageHeroProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\SiteProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\LanguageMenuProcessor'), 'templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'levelfield:-2,backend_layout_next_level,slide', 'override.' => array('field' => 'backend_layout'), 'split.' => array('token' => '__', 'returnKey' => '1')), 'ifEmpty' => '1Column')), 'layoutRootPaths.' => array('EXT:servomattemplate/Resources/Private/Layouts/'), 'templateRootPaths.' => array('EXT:servomattemplate/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:servomattemplate/Resources/Private/Partials/'), 'variables.' => array(), 'settings.' => array('logo' => 'EXT:servomattemplate/Resources/Public/Images/rheavendors-servomat-logo.png', 'searchPagePID' => '', 'policyPid' => '40', 'menu.' => array('homePageUID' => '1', 'partnerPageUid' => '33', 'showAccessProtectedPages' => '0', 'main.' => array('entryLevel' => '0'), 'sub.' => array('entryLevel' => '1'), 'user.' => array('pageUid' => '34'), 'footer.' => array('pageUid' => '53', 'legalPageUid' => '38', 'socialPageUid' => '60'), 'language.' => array('activated' => '0', 'hideCurrent' => '1', 'layout' => 'Dropdown', 'itemLayout' => 'FlagAndLabel'), 'mobile.' => array('cache' => '0')), 'config.' => array('pageTitleProviders.' => array('record.' => array('provider' => 'TYPO3\\CMS\\Core\\PageTitle\\RecordPageTitleProvider'), 'seo.' => array('provider' => 'TYPO3\\CMS\\Seo\\PageTitle\\SeoTitlePageTitleProvider', 'before' => 'record'), 'news.' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'before' => 'altPageTitle,record,seo')), 'tx_extbase.' => array('persistence.' => array('classes.' => array('GeorgRinger\News\Domain\Model\News.' => array('subclasses.' => array('GeorgRinger\\News\\Domain\\Model\\NewsDefault', 'GeorgRinger\\News\\Domain\\Model\\NewsInternal', 'GeorgRinger\\News\\Domain\\Model\\NewsExternal')), 'GeorgRinger\News\Domain\Model\NewsDefault.' => array('mapping.' => array('recordType' => '0', 'tableName' => 'tx_news_domain_model_news')), 'GeorgRinger\News\Domain\Model\NewsInternal.' => array('mapping.' => array('recordType' => '1', 'tableName' => 'tx_news_domain_model_news')), 'GeorgRinger\News\Domain\Model\NewsExternal.' => array('mapping.' => array('recordType' => '2', 'tableName' => 'tx_news_domain_model_news')), 'WapplerSystems\WsT3bootstrap\Domain\Model\Page.' => array('mapping.' => array('tableName' => 'pages'))))), 'sourceopt.' => array('enabled' => '1', 'headerComment' => '', 'formatHtml' => '0', 'formatHtml.' => array('tabSize' => '', 'debugComment' => '0'), 'dropEmptySpaceChar' => '0', 'removeGenerator' => '1', 'removeComments' => '1', 'removeComments.' => array('keep.' => array('/This website is powered by TYPO3/usi', '/^\\[if/usi', '/^<!\\[endif/usi', '/^INT_SCRIPT\\./usi', '/^TDS_/usi', '/^HD_/usi', '/INTsubpart_/usi', '/^googleoff_/usi', '/^googleon_/usi', '/^gps(e|s)/usi', '/^TYPO3SEARCH_/usi'))), 'svgstore.' => array('enabled' => '1', 'fileSize' => '50000'), 'renderCharset' => 'utf-8', 'metaCharset' => 'utf-8', 'sendCacheHeaders' => '1', 'doctype' => 'html5', 'absRefPrefix' => 'auto', 'removeDefaultJS' => 'external', 'typolinkEnableLinksAcrossDomains' => '1', 'sword_standAlone' => '0', 'sword_noMixedCase' => '0', 'intTarget' => '_self', 'extTarget' => '_blank', 'spamProtectEmailAddresses' => '-2', 'spamProtectEmailAddresses_atSubst' => '[@~@]', 'spamProtectEmailAddresses_lastDotSubst' => '[punkt]', 'no_cache' => '0', 'additionalHeaders' => 'Content-Type:text/html;charset=utf-8', 'content_from_pid_allowOutsideDomain' => '1', 'pageTitleFirst' => '1', 'pageTitleSeparator' => '|', 'pageTitleSeparator.' => array('noTrimWrap' => '| | |'), 'headerComment' => '', 'simulateStaticDocuments' => '0', 'admPanel' => '0', 'xhtml_cleaning' => 'all', 'disablePrefixComment' => '0', 'contentObjectExceptionHandler' => '0', 'typolinkLinkAccessRestrictedPages' => '', 'index_enable' => '0', 'index_externals' => '0', 'index_metatags' => '0'), 'header.' => array('searchbox' => '1', 'breadcrumb' => '0', 'overlayMenuSection' => '0'), 'footer.' => array('contentUid' => '64', 'contentNewsletterInvitationUid' => '65'), 'callToAction.' => array('activated' => '0', 'email.' => array('pageId' => '', 'iconClass' => 'far fa-envelope', 'order' => '1', 'modal' => '1', 'label' => 'E-Mail'), 'custom.' => array('1.' => array('pageId' => '', 'label' => 'Demo', 'order' => '2', 'iconClass' => 'fas fa-desktop'), '2.' => array('pageId' => '', 'label' => '', 'order' => '2', 'iconClass' => '{$callToAction.custom.2.class}')), 'items.' => array('facebook.' => array('link' => '', 'title' => 'Facebook', 'iconClass' => 'fab fa-facebook-f', 'btnClass' => 'btn-facebook', 'order' => '2', 'label' => 'Facebook'), 'youtube.' => array('link' => '', 'title' => 'Youtube', 'iconClass' => 'fab fa-youtube', 'btnClass' => 'btn-youtube', 'order' => '3', 'label' => 'Youtube'), 'instagram.' => array('link' => '', 'title' => 'Instagram', 'iconClass' => 'fab fa-instagram', 'btnClass' => 'btn-instagram', 'order' => '4', 'label' => 'Instagram'), 'pinterest.' => array('link' => '', 'title' => 'Pinterest', 'iconClass' => 'fab fa-pinterest', 'btnClass' => 'btn-pinterest', 'order' => '5', 'label' => 'Pinterest'), 'xing.' => array('link' => '', 'title' => 'Xing', 'iconClass' => 'fab fa-xing', 'btnClass' => 'btn-xing', 'order' => '6', 'label' => 'Xing'), 'linkedin.' => array('link' => '', 'title' => 'LinkedIn', 'iconClass' => 'fab fa-linkedin', 'btnClass' => 'btn-linkedin', 'order' => '7', 'label' => 'LinkedIn'))), 'hero.' => array('xl.' => array('width' => '1920', 'mediaquery' => '(min-width: 1200px)', 'cropVariant' => 'full'), 'lg.' => array('width' => '1199.98', 'mediaquery' => '(max-width: 1199.98px)', 'cropVariant' => 'lg'), 'md.' => array('width' => '991.98', 'mediaquery' => '(max-width: 991.98px)', 'cropVariant' => 'md'), 'sm.' => array('width' => '767.98', 'mediaquery' => '(max-width: 767.98px)', 'cropVariant' => 'sm'), 'xs.' => array('width' => '575.98', 'mediaquery' => '(max-width: 575.98px)', 'cropVariant' => 'xs')), 'searchTerm' => '{search_term_string}', 'layout' => 'full', 'lazyLoading' => 'lazy', 'pageBrowser.' => array('excludedUids' => '6, 25, 37, 39, 42'))))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page', 'dataProcessing.' => array('WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\SiteConfigProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\PageHeroProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\SiteProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\LanguageMenuProcessor'), 'templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'levelfield:-2,backend_layout_next_level,slide', 'override.' => array('field' => 'backend_layout'), 'split.' => array('token' => '__', 'returnKey' => '1')), 'ifEmpty' => '1Column')), 'layoutRootPaths.' => array('EXT:servomattemplate/Resources/Private/Layouts/'), 'templateRootPaths.' => array('EXT:servomattemplate/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:servomattemplate/Resources/Private/Partials/'), 'variables.' => array(), 'settings.' => array('logo' => 'EXT:servomattemplate/Resources/Public/Images/rheavendors-servomat-logo.png', 'searchPagePID' => '', 'policyPid' => '40', 'menu.' => array('homePageUID' => '1', 'partnerPageUid' => '33', 'showAccessProtectedPages' => '0', 'main.' => array('entryLevel' => '0'), 'sub.' => array('entryLevel' => '1'), 'user.' => array('pageUid' => '34'), 'footer.' => array('pageUid' => '53', 'legalPageUid' => '38', 'socialPageUid' => '60'), 'language.' => array('activated' => '0', 'hideCurrent' => '1', 'layout' => 'Dropdown', 'itemLayout' => 'FlagAndLabel'), 'mobile.' => array('cache' => '0')), 'config.' => array('pageTitleProviders.' => array('record.' => array('provider' => 'TYPO3\\CMS\\Core\\PageTitle\\RecordPageTitleProvider'), 'seo.' => array('provider' => 'TYPO3\\CMS\\Seo\\PageTitle\\SeoTitlePageTitleProvider', 'before' => 'record'), 'news.' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'before' => 'altPageTitle,record,seo')), 'tx_extbase.' => array('persistence.' => array('classes.' => array('GeorgRinger\News\Domain\Model\News.' => array('subclasses.' => array('GeorgRinger\\News\\Domain\\Model\\NewsDefault', 'GeorgRinger\\News\\Domain\\Model\\NewsInternal', 'GeorgRinger\\News\\Domain\\Model\\NewsExternal')), 'GeorgRinger\News\Domain\Model\NewsDefault.' => array('mapping.' => array('recordType' => '0', 'tableName' => 'tx_news_domain_model_news')), 'GeorgRinger\News\Domain\Model\NewsInternal.' => array('mapping.' => array('recordType' => '1', 'tableName' => 'tx_news_domain_model_news')), 'GeorgRinger\News\Domain\Model\NewsExternal.' => array('mapping.' => array('recordType' => '2', 'tableName' => 'tx_news_domain_model_news')), 'WapplerSystems\WsT3bootstrap\Domain\Model\Page.' => array('mapping.' => array('tableName' => 'pages'))))), 'sourceopt.' => array('enabled' => '1', 'headerComment' => '', 'formatHtml' => '0', 'formatHtml.' => array('tabSize' => '', 'debugComment' => '0'), 'dropEmptySpaceChar' => '0', 'removeGenerator' => '1', 'removeComments' => '1', 'removeComments.' => array('keep.' => array('/This website is powered by TYPO3/usi', '/^\\[if/usi', '/^<!\\[endif/usi', '/^INT_SCRIPT\\./usi', '/^TDS_/usi', '/^HD_/usi', '/INTsubpart_/usi', '/^googleoff_/usi', '/^googleon_/usi', '/^gps(e|s)/usi', '/^TYPO3SEARCH_/usi'))), 'svgstore.' => array('enabled' => '1', 'fileSize' => '50000'), 'renderCharset' => 'utf-8', 'metaCharset' => 'utf-8', 'sendCacheHeaders' => '1', 'doctype' => 'html5', 'absRefPrefix' => 'auto', 'removeDefaultJS' => 'external', 'typolinkEnableLinksAcrossDomains' => '1', 'sword_standAlone' => '0', 'sword_noMixedCase' => '0', 'intTarget' => '_self', 'extTarget' => '_blank', 'spamProtectEmailAddresses' => '-2', 'spamProtectEmailAddresses_atSubst' => '[@~@]', 'spamProtectEmailAddresses_lastDotSubst' => '[punkt]', 'no_cache' => '0', 'additionalHeaders' => 'Content-Type:text/html;charset=utf-8', 'content_from_pid_allowOutsideDomain' => '1', 'pageTitleFirst' => '1', 'pageTitleSeparator' => '|', 'pageTitleSeparator.' => array('noTrimWrap' => '| | |'), 'headerComment' => '', 'simulateStaticDocuments' => '0', 'admPanel' => '0', 'xhtml_cleaning' => 'all', 'disablePrefixComment' => '0', 'contentObjectExceptionHandler' => '0', 'typolinkLinkAccessRestrictedPages' => '', 'index_enable' => '0', 'index_externals' => '0', 'index_metatags' => '0'), 'header.' => array('searchbox' => '1', 'breadcrumb' => '0', 'overlayMenuSection' => '0'), 'footer.' => array('contentUid' => '64', 'contentNewsletterInvitationUid' => '65'), 'callToAction.' => array('activated' => '0', 'email.' => array('pageId' => '', 'iconClass' => 'far fa-envelope', 'order' => '1', 'modal' => '1', 'label' => 'E-Mail'), 'custom.' => array('1.' => array('pageId' => '', 'label' => 'Demo', 'order' => '2', 'iconClass' => 'fas fa-desktop'), '2.' => array('pageId' => '', 'label' => '', 'order' => '2', 'iconClass' => '{$callToAction.custom.2.class}')), 'items.' => array('facebook.' => array('link' => '', 'title' => 'Facebook', 'iconClass' => 'fab fa-facebook-f', 'btnClass' => 'btn-facebook', 'order' => '2', 'label' => 'Facebook'), 'youtube.' => array('link' => '', 'title' => 'Youtube', 'iconClass' => 'fab fa-youtube', 'btnClass' => 'btn-youtube', 'order' => '3', 'label' => 'Youtube'), 'instagram.' => array('link' => '', 'title' => 'Instagram', 'iconClass' => 'fab fa-instagram', 'btnClass' => 'btn-instagram', 'order' => '4', 'label' => 'Instagram'), 'pinterest.' => array('link' => '', 'title' => 'Pinterest', 'iconClass' => 'fab fa-pinterest', 'btnClass' => 'btn-pinterest', 'order' => '5', 'label' => 'Pinterest'), 'xing.' => array('link' => '', 'title' => 'Xing', 'iconClass' => 'fab fa-xing', 'btnClass' => 'btn-xing', 'order' => '6', 'label' => 'Xing'), 'linkedin.' => array('link' => '', 'title' => 'LinkedIn', 'iconClass' => 'fab fa-linkedin', 'btnClass' => 'btn-linkedin', 'order' => '7', 'label' => 'LinkedIn'))), 'hero.' => array('xl.' => array('width' => '1920', 'mediaquery' => '(min-width: 1200px)', 'cropVariant' => 'full'), 'lg.' => array('width' => '1199.98', 'mediaquery' => '(max-width: 1199.98px)', 'cropVariant' => 'lg'), 'md.' => array('width' => '991.98', 'mediaquery' => '(max-width: 991.98px)', 'cropVariant' => 'md'), 'sm.' => array('width' => '767.98', 'mediaquery' => '(max-width: 767.98px)', 'cropVariant' => 'sm'), 'xs.' => array('width' => '575.98', 'mediaquery' => '(max-width: 575.98px)', 'cropVariant' => 'xs')), 'searchTerm' => '{search_term_string}', 'layout' => 'full', 'lazyLoading' => 'lazy', 'pageBrowser.' => array('excludedUids' => '6, 25, 37, 39, 42'))), '5')
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 698
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('typeNum' => '0', 'FLUIDTEMPLATE', '5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page', 'dataProcessing.' => array('WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\SiteConfigProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\PageHeroProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\SiteProcessor', 'WapplerSystems\\WsT3bootstrap\\Frontend\\DataProcessing\\LanguageMenuProcessor'), 'templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'levelfield:-2,backend_layout_next_level,slide', 'override.' => array('field' => 'backend_layout'), 'split.' => array('token' => '__', 'returnKey' => '1')), 'ifEmpty' => '1Column')), 'layoutRootPaths.' => array('EXT:servomattemplate/Resources/Private/Layouts/'), 'templateRootPaths.' => array('EXT:servomattemplate/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:servomattemplate/Resources/Private/Partials/'), 'variables.' => array(), 'settings.' => array('logo' => 'EXT:servomattemplate/Resources/Public/Images/rheavendors-servomat-logo.png', 'searchPagePID' => '', 'policyPid' => '40', 'menu.' => array('homePageUID' => '1', 'partnerPageUid' => '33', 'showAccessProtectedPages' => '0', 'main.' => array('entryLevel' => '0'), 'sub.' => array('entryLevel' => '1'), 'user.' => array('pageUid' => '34'), 'footer.' => array('pageUid' => '53', 'legalPageUid' => '38', 'socialPageUid' => '60'), 'language.' => array('activated' => '0', 'hideCurrent' => '1', 'layout' => 'Dropdown', 'itemLayout' => 'FlagAndLabel'), 'mobile.' => array('cache' => '0')), 'config.' => array('pageTitleProviders.' => array('record.' => array('provider' => 'TYPO3\\CMS\\Core\\PageTitle\\RecordPageTitleProvider'), 'seo.' => array('provider' => 'TYPO3\\CMS\\Seo\\PageTitle\\SeoTitlePageTitleProvider', 'before' => 'record'), 'news.' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'before' => 'altPageTitle,record,seo')), 'tx_extbase.' => array('persistence.' => array('classes.' => array('GeorgRinger\News\Domain\Model\News.' => array('subclasses.' => array('GeorgRinger\\News\\Domain\\Model\\NewsDefault', 'GeorgRinger\\News\\Domain\\Model\\NewsInternal', 'GeorgRinger\\News\\Domain\\Model\\NewsExternal')), 'GeorgRinger\News\Domain\Model\NewsDefault.' => array('mapping.' => array('recordType' => '0', 'tableName' => 'tx_news_domain_model_news')), 'GeorgRinger\News\Domain\Model\NewsInternal.' => array('mapping.' => array('recordType' => '1', 'tableName' => 'tx_news_domain_model_news')), 'GeorgRinger\News\Domain\Model\NewsExternal.' => array('mapping.' => array('recordType' => '2', 'tableName' => 'tx_news_domain_model_news')), 'WapplerSystems\WsT3bootstrap\Domain\Model\Page.' => array('mapping.' => array('tableName' => 'pages'))))), 'sourceopt.' => array('enabled' => '1', 'headerComment' => '', 'formatHtml' => '0', 'formatHtml.' => array('tabSize' => '', 'debugComment' => '0'), 'dropEmptySpaceChar' => '0', 'removeGenerator' => '1', 'removeComments' => '1', 'removeComments.' => array('keep.' => array('/This website is powered by TYPO3/usi', '/^\\[if/usi', '/^<!\\[endif/usi', '/^INT_SCRIPT\\./usi', '/^TDS_/usi', '/^HD_/usi', '/INTsubpart_/usi', '/^googleoff_/usi', '/^googleon_/usi', '/^gps(e|s)/usi', '/^TYPO3SEARCH_/usi'))), 'svgstore.' => array('enabled' => '1', 'fileSize' => '50000'), 'renderCharset' => 'utf-8', 'metaCharset' => 'utf-8', 'sendCacheHeaders' => '1', 'doctype' => 'html5', 'absRefPrefix' => 'auto', 'removeDefaultJS' => 'external', 'typolinkEnableLinksAcrossDomains' => '1', 'sword_standAlone' => '0', 'sword_noMixedCase' => '0', 'intTarget' => '_self', 'extTarget' => '_blank', 'spamProtectEmailAddresses' => '-2', 'spamProtectEmailAddresses_atSubst' => '[@~@]', 'spamProtectEmailAddresses_lastDotSubst' => '[punkt]', 'no_cache' => '0', 'additionalHeaders' => 'Content-Type:text/html;charset=utf-8', 'content_from_pid_allowOutsideDomain' => '1', 'pageTitleFirst' => '1', 'pageTitleSeparator' => '|', 'pageTitleSeparator.' => array('noTrimWrap' => '| | |'), 'headerComment' => '', 'simulateStaticDocuments' => '0', 'admPanel' => '0', 'xhtml_cleaning' => 'all', 'disablePrefixComment' => '0', 'contentObjectExceptionHandler' => '0', 'typolinkLinkAccessRestrictedPages' => '', 'index_enable' => '0', 'index_externals' => '0', 'index_metatags' => '0'), 'header.' => array('searchbox' => '1', 'breadcrumb' => '0', 'overlayMenuSection' => '0'), 'footer.' => array('contentUid' => '64', 'contentNewsletterInvitationUid' => '65'), 'callToAction.' => array('activated' => '0', 'email.' => array('pageId' => '', 'iconClass' => 'far fa-envelope', 'order' => '1', 'modal' => '1', 'label' => 'E-Mail'), 'custom.' => array('1.' => array('pageId' => '', 'label' => 'Demo', 'order' => '2', 'iconClass' => 'fas fa-desktop'), '2.' => array('pageId' => '', 'label' => '', 'order' => '2', 'iconClass' => '{$callToAction.custom.2.class}')), 'items.' => array('facebook.' => array('link' => '', 'title' => 'Facebook', 'iconClass' => 'fab fa-facebook-f', 'btnClass' => 'btn-facebook', 'order' => '2', 'label' => 'Facebook'), 'youtube.' => array('link' => '', 'title' => 'Youtube', 'iconClass' => 'fab fa-youtube', 'btnClass' => 'btn-youtube', 'order' => '3', 'label' => 'Youtube'), 'instagram.' => array('link' => '', 'title' => 'Instagram', 'iconClass' => 'fab fa-instagram', 'btnClass' => 'btn-instagram', 'order' => '4', 'label' => 'Instagram'), 'pinterest.' => array('link' => '', 'title' => 'Pinterest', 'iconClass' => 'fab fa-pinterest', 'btnClass' => 'btn-pinterest', 'order' => '5', 'label' => 'Pinterest'), 'xing.' => array('link' => '', 'title' => 'Xing', 'iconClass' => 'fab fa-xing', 'btnClass' => 'btn-xing', 'order' => '6', 'label' => 'Xing'), 'linkedin.' => array('link' => '', 'title' => 'LinkedIn', 'iconClass' => 'fab fa-linkedin', 'btnClass' => 'btn-linkedin', 'order' => '7', 'label' => 'LinkedIn'))), 'hero.' => array('xl.' => array('width' => '1920', 'mediaquery' => '(min-width: 1200px)', 'cropVariant' => 'full'), 'lg.' => array('width' => '1199.98', 'mediaquery' => '(max-width: 1199.98px)', 'cropVariant' => 'lg'), 'md.' => array('width' => '991.98', 'mediaquery' => '(max-width: 991.98px)', 'cropVariant' => 'md'), 'sm.' => array('width' => '767.98', 'mediaquery' => '(max-width: 767.98px)', 'cropVariant' => 'sm'), 'xs.' => array('width' => '575.98', 'mediaquery' => '(max-width: 575.98px)', 'cropVariant' => 'xs')), 'searchTerm' => '{search_term_string}', 'layout' => 'full', 'lazyLoading' => 'lazy', 'pageBrowser.' => array('excludedUids' => '6, 25, 37, 39, 42'))), 'includeJSFooter.' => array('flexslider' => 'EXT:ws_slider/Resources/Public/JavaScript/Flexslider/jquery.flexslider.min.js', 'slick' => 'EXT:ws_slider/Resources/Public/JavaScript/Slick/slick.min.js', 'cookie-js' => 'EXT:cookieman/Resources/Public/Js/js.cookie.min.js', 'cookieman' => 'EXT:cookieman/Resources/Public/Js/cookieman.min.js', 'cookieman-theme' => 'EXT:cookieman/Resources/Public/Themes/bootstrap4-modal/cookieman-theme.min.js', 'cookieman-init' => 'EXT:cookieman/Resources/Public/Js/cookieman-init.min.js', 'servomat_partner_map' => 'EXT:servomat_partners/Resources/Public/JavaScript/partner_map.js', 'glightbox' => 'EXT:servomattemplate/Resources/Public/JavaScript/glightbox/glightbox.min.js', 'videojs' => 'EXT:servomattemplate/Resources/Public/JavaScript/video-js/video.min.js', 'servomat_utilities' => 'EXT:servomattemplate/Resources/Public/JavaScript/custom/helpers/utilities.js', 'servomat_helper' => 'EXT:servomattemplate/Resources/Public/JavaScript/custom/helpers/helper.js', 'servomat_app' => 'EXT:servomattemplate/Resources/Public/JavaScript/custom/app.js', 'servomat_lightbox' => 'EXT:servomattemplate/Resources/Public/JavaScript/custom/lightbox.js', 'servomat_menu' => 'EXT:servomattemplate/Resources/Public/JavaScript/custom/menu.js', 'servomat_opt_in_external_provider' => 'EXT:servomattemplate/Resources/Public/JavaScript/custom/opt_in_external_provider.js', 'servomat_slider' => 'EXT:servomattemplate/Resources/Public/JavaScript/custom/slider.js'), 'includeCSS.' => array('flexslider' => 'EXT:ws_slider/Resources/Public/CSS/Flexslider/flexslider.css', 'flexslider_mods' => 'EXT:ws_slider/Resources/Public/CSS/Flexslider/mods.css', 'slick' => 'EXT:ws_slider/Resources/Public/CSS/Slick/slick.css', 'slick_theme' => 'EXT:ws_slider/Resources/Public/CSS/Slick/slick-theme.css', 'cookieman-theme' => 'EXT:cookieman/Resources/Public/Themes/bootstrap4-modal/cookieman-theme.min.css', 'fonts' => 'EXT:servomattemplate/Resources/Private/SCSS/fonts.scss', 'fonts.' => array('outputfile' => 'typo3temp/assets/css/servomattemplate/fonts.css', 'excludeFromConcatenation' => '1'), 'main' => 'EXT:servomattemplate/Resources/Private/SCSS/main.scss', 'main.' => array('outputfile' => 'typo3temp/assets/css/servomattemplate/main.css', 'sourceMap' => 'true')), 'FLUIDTEMPLATE', '1365499.' => array('templateName' => 'Popup', 'templateRootPaths.' => array('EXT:cookieman/Resources/Private/Templates/', 'EXT:cookieman/Resources/Private/Themes/bootstrap4-modal/Templates/', 'EXT:cookieman/Resources/Private/Themes/bootstrap4-modal/Templates/'), 'partialRootPaths.' => array('EXT:cookieman/Resources/Private/Partials/', 'EXT:cookieman/Resources/Private/Themes/bootstrap4-modal/Partials/', 'EXT:cookieman/Resources/Private/Themes/bootstrap4-modal/Partials/'), 'layoutRootPaths.' => array('EXT:cookieman/Resources/Private/Layouts/', 'EXT:cookieman/Resources/Private/Themes/bootstrap4-modal/Layouts/', 'EXT:cookieman/Resources/Private/Themes/bootstrap4-modal/Layouts/'), 'extbase.' => array('controllerExtensionName' => 'cookieman'), 'dataProcessing.' => array('Dmind\\Cookieman\\DataProcessing\\TypoScriptSettingsProcessor')), 'includeJSLibs.' => array('picturefill' => 'EXT:servomattemplate/Resources/Public/JavaScript/picturefill/picturefill.min.js'), 'includeJS.' => array('mail' => 'EXT:servomattemplate/Resources/Public/JavaScript/mail.js', 'plugins' => 'EXT:servomattemplate/Resources/Public/JavaScript/plugins.js'), 'includeJSFooterlibs.' => array('jquery' => 'EXT:servomattemplate/Resources/Public/JavaScript/jquery/jquery-3.5.1.min.js', 'jquery.' => array('forceOnTop' => '1'), 'popper' => 'EXT:servomattemplate/Resources/Public/JavaScript/bootstrap/popper.min.js', 'bootstrap' => 'EXT:servomattemplate/Resources/Public/JavaScript/bootstrap/bootstrap.js'), 'preloads.' => array('roboto-v29-latin-regular' => 'EXT:servomattemplate/Resources/Public/Fonts/roboto/roboto-v29-latin-regular.woff2', 'roboto-v29-latin-regular.' => array('as' => 'font', 'type' => 'font/woff2', 'crossorigin' => 'anonymous'), 'roboto-v29-latin-500' => 'EXT:servomattemplate/Resources/Public/Fonts/roboto/roboto-v29-latin-500.woff2', 'roboto-v29-latin-500.' => array('as' => 'font', 'type' => 'font/woff2', 'crossorigin' => 'anonymous'), 'roboto-v29-latin-700' => 'EXT:servomattemplate/Resources/Public/Fonts/roboto/roboto-v29-latin-700.woff2', 'roboto-v29-latin-700.' => array('as' => 'font', 'type' => 'font/woff2', 'crossorigin' => 'anonymous')), 'headerData.' => array('TEXT', '20.' => array('value' => ' <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="format-detection" content="telephone=no">'), 'TEXT', '30.' => array('value' => '{page:nav_title//page:title}', 'insertData' => '1', 'wrap' => '<meta name="navtitle" content="|">'), 'IMG_RESOURCE', '870.' => array('file' => 'EXT:servomattemplate/Resources/Public/Images/favicons/apple-touch-icon-57-precomposed.png', 'stdWrap.' => array('wrap' => '<link href="|" rel="apple-touch-icon apple-touch-icon-precomposed" />', 'required' => '1')), 'IMG_RESOURCE', '871.' => array('file' => 'EXT:servomattemplate/Resources/Public/Images/favicons/apple-touch-icon-72-precomposed.png', 'stdWrap.' => array('wrap' => '<link href="|" rel="apple-touch-icon apple-touch-icon-precomposed" sizes="72x72" />', 'required' => '1')), 'IMG_RESOURCE', '872.' => array('file' => 'EXT:servomattemplate/Resources/Public/Images/favicons/apple-touch-icon-114-precomposed.png', 'stdWrap.' => array('wrap' => '<link href="|" rel="apple-touch-icon apple-touch-icon-precomposed" sizes="114x114" />', 'required' => '1')), 'IMG_RESOURCE', '873.' => array('file' => 'EXT:servomattemplate/Resources/Public/Images/favicons/apple-touch-icon-144-precomposed.png', 'stdWrap.' => array('wrap' => '<link href="|" rel="apple-touch-icon apple-touch-icon-precomposed" sizes="144x144" />', 'required' => '1'))), 'meta.' => array('X-UA-Compatible' => 'IE=11; IE=edge', 'X-UA-Compatible.' => array('httpEquivalent' => '1'), 'description.' => array('data' => 'page:description'), 'author.' => array('data' => 'page.author')), 'shortcutIcon' => 'EXT:servomattemplate/Resources/Public/Images/favicons/favicon.png', 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('TEXT', '5.' => array('value' => '<body'), 'COA', '11.' => array('stdWrap.' => array('noTrimWrap' => '| class="|" |'), 'TEXT', '1.' => array('value' => ''), 'TEXT', '2.' => array('stdWrap.' => array('noTrimWrap' => '| layout-||', 'cObject' => 'TEXT', 'cObject.' => array('data' => 'levelfield:-2,backend_layout_next_level,slide', 'override.' => array('field' => 'backend_layout'), 'split.' => array('token' => '__', 'returnKey' => '1')), 'ifEmpty' => '1Column')), 'TEXT', '3.' => array('stdWrap.' => array('noTrimWrap' => '| ||')), 'TEXT', '4.' => array('value' => 'full', 'stdWrap.' => array('noTrimWrap' => '| layout-||')), 'TEXT', '5.' => array('value' => '', 'stdWrap.' => array('noTrimWrap' => '| ||'))), 'TEXT', '20.' => array('value' => '{TSFE:id}', 'insertData' => '1', 'noTrimWrap' => '| id="page_|">|')), 'TEXT', '1.' => array('value' => '<script type="text/javascript">dataLayer = [];</script>'), 'USER', '999.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Aoe', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking', 'controller' => 'Tracking', 'action' => 'values', 'switchableControllerActions.' => array('Tracking.' => array('values')), 'view.' => array('templateRootPath' => 'EXT:google_tag_manager/Resources/Private/Templates/', 'partialRootPath' => 'EXT:google_tag_manager/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:google_tag_manager/Resources/Private/Layouts/'), 'settings.' => array('enable' => '1', 'tagId' => 'GTM-TXJTN9K', 'dataLayerVersion' => '0')), 'USER', '3000.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Aoe', 'extensionName' => 'GoogleTagManager', 'pluginName' => 'Tracking', 'controller' => 'Tracking', 'action' => 'index', 'switchableControllerActions.' => array('Tracking.' => array('index')), 'view.' => array('templateRootPath' => 'EXT:google_tag_manager/Resources/Private/Templates/', 'partialRootPath' => 'EXT:google_tag_manager/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:google_tag_manager/Resources/Private/Layouts/'), 'settings.' => array('enable' => '1', 'tagId' => 'GTM-TXJTN9K', 'dataLayerVersion' => '0'))))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 223
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 189
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 141
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

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

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

at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Middleware/ResponsePropagation.php line 34
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        try {
            $response = $handler->handle($request);
        } catch (PropagateResponseException $e) {
            $response = $e->getResponse();
        }

at TYPO3\CMS\Core\Middleware\ResponsePropagation->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3conf/ext/sourceopt/Classes/Middleware/SvgStoreMiddleware.php line 26
     * Search/Extract/Merge SVGs @ HTML output.
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        if (!($response instanceof NullResponse)
        && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
        && false !== (bool) $GLOBALS['TSFE']->config['config']['svgstore.']['enabled']
at HTML\Sourceopt\Middleware\SvgStoreMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3conf/ext/sourceopt/Classes/Middleware/CleanHtmlMiddleware.php line 37
     * Clean the HTML output.
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        if (!($response instanceof NullResponse)
        && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
        && false !== (bool) $GLOBALS['TSFE']->config['config']['sourceopt.']['enabled']
at HTML\Sourceopt\Middleware\CleanHtmlMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 44
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && StateUtility::isActivatedForUser()
            && StateUtility::isActivatedInTypoScript()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 46
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && StateUtility::isActivatedForUser()
            && StateUtility::isActivatedInTypoScript()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 46
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController) {
            if (
                    (!isset($GLOBALS['TSFE']->config['config']['enableContentLengthHeader']) || $GLOBALS['TSFE']->config['config']['enableContentLengthHeader'])
                    && !$GLOBALS['TSFE']->isBackendUserLoggedIn() && !($GLOBALS['TYPO3_CONF_VARS']['FE']['debug'] ?? false)
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 79
                );
            }
        }

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 78
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        $response = $handler->handle($request);

        /**
         * Release TSFE locks. They have been acquired in the above call to controller->getFromCache().
         * TSFE locks are usually released by the RequestHandler 'final' middleware.
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 104
        // Make TSFE globally available
        // @todo deprecate $GLOBALS['TSFE'] once TSFE is retrieved from the
        //       PSR-7 request attribute frontend.controller throughout TYPO3 core
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 132
            }
        }

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

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 84
                return $response;
            }
        }

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

    protected function buildRedirectResponse(UriInterface $uri, array $redirectRecord): ResponseInterface
    {
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 91
        if ($this->context->getAspect('frontend.user')->isLoggedIn() && $rateLimiter) {
            $rateLimiter->reset();
        }

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

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 78
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

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

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Middleware/VerifyHostHeader.php line 55
                1396795884
            );
        }

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

    /**
     * Checks if the provided host header value matches the trusted hosts pattern.
at TYPO3\CMS\Core\Middleware\VerifyHostHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251))
in /var/www/web32/html/typo3_src-11.5.7/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/var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$251->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/web32/html/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

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

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

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