Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

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

Find a solution for this exception in the TYPO3 Documentation.

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

Object of type JAKOTA\Vesseldb\Domain\Model\Vessel with identity "22" not found.

in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php line 237
            throw new InvalidSourceException('The identity property "' . $identity . '" is no UID.', 1297931020);
        }

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

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

        if ($result instanceof Error) {
            $this->messages->forProperty(implode('.', $currentPropertyPath))->addError($result);
        }
at TYPO3\CMS\Extbase\Property\PropertyMapper->doMapping('22', 'JAKOTA\\Vesseldb\\Domain\\Model\\Vessel', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration), array())
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 122
        }
        $currentPropertyPath = [];
        $this->messages = new Result();
        try {
            $result = $this->doMapping($source, $targetType, $configuration, $currentPropertyPath);
            if ($result instanceof Error) {
                return null;
            }

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

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

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

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

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

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'), 'tt_content.list.20.vesseldb_vesseldata')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'themes_theme' => 'USER', 'themes_theme.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'pluginName' => 'Theme'), 'jakotacookieoptin_optin' => 'USER', 'jakotacookieoptin_optin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'JakotaCookieOptin', 'pluginName' => 'OptIn'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'vesseldb_vesseldata' => 'USER', 'vesseldb_vesseldata.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'), 'vesseldb_jsonactions' => 'USER', 'vesseldb_jsonactions.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'JsonActions')), 'tt_content.list.20.vesseldb_vesseldata', 'vesseldb_vesseldata')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 165, 'pid' => 38, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1601970955, 'crdate' => 1476965975, 'cruser_id' => 2, 'editlock' => 0, 'hidden' => 0, 'sorting' => 256, 'CType' => 'list', 'header' => '', 'rowDescription' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 1, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '1', 'menu_type' => '0', 'list_type' => 'vesseldb_vesseldata', 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:27:{s:5:"CType";N;s:6:"colPos";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"subheader";N;s:14:"tx_themes_icon";N;s:9:"list_type";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"frame_class";N;s:18:"space_before_class";N;s:17:"space_after_class";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:16:"sys_language_uid";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:25:"tx_gridelements_container";N;}', 'selected_categories' => null, 'category_field' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'categories' => 0, 'tx_themes_responsive' => '', 'tx_themes_behaviour' => '', 'tx_themes_variants' => '', 'tx_themes_enforceequalcolumnheight' => '', 'tx_themes_columnsettings' => '', 'tx_themes_buttoncontent' => 0, 'tx_themes_icon' => '', 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'imagegroup_layout' => '', 'tx_news_related_news' => 0, 'teaser_icon' => '', 'teaser_type' => '', 'header_position' => '', 'frame_class' => 'default', 'spaceBefore' => 0, 'spaceAfter' => 0, 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'gridelements_shortcut_page_order_by' => 0), 'typoscriptObjectPath' => 'tt_content.list.20.vesseldb_vesseldata', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/vhosts/de.hammonia-reederei/htdocs/typo3temp/var/cache/code/fluid_template/Standard_action_list_35d5d50e76063823ae0d88db456e504c799aa263.php line 58
$arguments1['typoscriptObjectPath'] = $output3;
$array5 = array (
);$arguments1['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array5);
$renderChildrenClosure2 = ($arguments1['data'] !== null) ? function() use ($arguments1) { return $arguments1['data']; } : $renderChildrenClosure2;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
';

at Standard_action_list_35d5d50e76063823ae0d88db456e504c799aa263->section_040f06fd774092478d450774f5ba30c5da78acc8(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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 /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 143
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => '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 /home/vhosts/de.hammonia-reederei/htdocs/typo3temp/var/cache/code/fluid_template/layout_HeaderContentFooter_html_8b00bfb8ec3fcf4a08395fc2136b6dcbb0add4b3.php line 84
$arguments5['contentAs'] = NULL;
$arguments5['debug'] = true;
$arguments5['section'] = 'content';

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

$output0 .= '
 ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_HeaderContentFooter_html_8b00bfb8ec3fcf4a08395fc2136b6dcbb0add4b3->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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 /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 108

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'themes_theme' => 'USER', 'themes_theme.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'pluginName' => 'Theme'), 'jakotacookieoptin_optin' => 'USER', 'jakotacookieoptin_optin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'JakotaCookieOptin', 'pluginName' => 'OptIn'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'vesseldb_vesseldata' => 'USER', 'vesseldb_vesseldata.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'), 'vesseldb_jsonactions' => 'USER', 'vesseldb_jsonactions.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'JsonActions')), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'themes_theme' => 'USER', 'themes_theme.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'pluginName' => 'Theme'), 'jakotacookieoptin_optin' => 'USER', 'jakotacookieoptin_optin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'JakotaCookieOptin', 'pluginName' => 'OptIn'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'vesseldb_vesseldata' => 'USER', 'vesseldb_vesseldata.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'), 'vesseldb_jsonactions' => 'USER', 'vesseldb_jsonactions.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'JsonActions')), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'themes_theme' => 'USER', 'themes_theme.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'pluginName' => 'Theme'), 'jakotacookieoptin_optin' => 'USER', 'jakotacookieoptin_optin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'JakotaCookieOptin', 'pluginName' => 'OptIn'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'vesseldb_vesseldata' => 'USER', 'vesseldb_vesseldata.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'), 'vesseldb_jsonactions' => 'USER', 'vesseldb_jsonactions.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'JsonActions')), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), 'lib.contentElement')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'typo3conf/ext/theme_hammonia/Resources/Private/Extensions/FluidStyledContent/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'themes_theme' => 'USER', 'themes_theme.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'pluginName' => 'Theme'), 'jakotacookieoptin_optin' => 'USER', 'jakotacookieoptin_optin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'JakotaCookieOptin', 'pluginName' => 'OptIn'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'vesseldb_vesseldata' => 'USER', 'vesseldb_vesseldata.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'), 'vesseldb_jsonactions' => 'USER', 'vesseldb_jsonactions.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'JsonActions')), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), 'list')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('if.' => array('value' => 'gridelements_pi1', 'equals.' => array('field' => 'CType'), 'negate' => '1'), 'default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'variantMapping' => '< lib.content.cssMap.variants'))))))), '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'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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', 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), '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'))), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'themes_theme' => 'USER', 'themes_theme.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'pluginName' => 'Theme'), 'jakotacookieoptin_optin' => 'USER', 'jakotacookieoptin_optin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'JakotaCookieOptin', 'pluginName' => 'OptIn'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'vesseldb_vesseldata' => 'USER', 'vesseldb_vesseldata.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'), 'vesseldb_jsonactions' => 'USER', 'vesseldb_jsonactions.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'JsonActions')), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), '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'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction'))), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '2ColumnGrid' => '< lib.gridelements.defaultGridSetup', '3ColumnGrid' => '< lib.gridelements.defaultGridSetup', '4ColumnGrid' => '< lib.gridelements.defaultGridSetup', 'accordion.' => array('setCurrent.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_responsive}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'behaviourAccordionMapping' => '< lib.content.cssMap.behaviour.accordion', 'variantMapping' => '< lib.content.cssMap.variants')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Accordion.html'), 'columns.' => array('0.' => array('renderObj' => '< tt_content'))), 'carousel.' => array('setCurrent.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_responsive}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'variantMapping' => '< lib.content.cssMap.variants')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Carousel.html'), 'columns.' => array('0.' => array('renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'textpic' => 'COA', 'textpic.' => array('FILES', '10.' => array('references.' => array(*DEEP NESTED ARRAY*), 'begin' => '0', 'maxItems' => '1', 'renderObj' => 'IMAGE', 'renderObj.' => array(*DEEP NESTED ARRAY*)), 'COA', '20.' => array('wrap' => '<div class="carousel-caption">|</div>', 'TEXT', '10.' => array(*DEEP NESTED ARRAY*), 'TEXT', '20.' => array(*DEEP NESTED ARRAY*))), 'textmedia' => 'COA', 'textmedia.' => array('FILES', '10.' => array('references.' => array(*DEEP NESTED ARRAY*), 'begin' => '0', 'maxItems' => '1', 'renderObj' => 'IMAGE', 'renderObj.' => array(*DEEP NESTED ARRAY*)), 'COA', '20.' => array('wrap' => '<div class="carousel-caption">|</div>', 'TEXT', '10.' => array(*DEEP NESTED ARRAY*), 'TEXT', '20.' => array(*DEEP NESTED ARRAY*))))))), 'container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_columnsettings},{field:tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'row.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_columnsettings},{field:tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||', 'if.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage', 'innerWrap' => '|</div>', 'innerWrap.' => array('fieldRequired' => 'tx_themes_enforceequalcolumnheight', 'prepend' => 'TEXT', 'prepend.' => array('field' => 'tx_themes_enforceequalcolumnheight', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveRowEqualHeightMapping' => '< lib.content.cssMap.responsive.row.equalHeight')), 'wrap' => '<div class="|">')))), 'singleColumn.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'medium-width-12,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:parentgrid_tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*), 'dataWrap.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'singleColumnHeaderFooter.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('wrap' => '<div class="panel-body">|</div>', 'renderObj' => '< tt_content'), '1.' => array('wrap' => '<div class="panel-footer">|</div>', 'required' => '1', 'renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'panel-default,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => 'COA', 'prepend.' => array('wrap' => '<div class="panel-heading">|</div>', '< lib.stdheader', '10.' => array('3.' => array('headerClass.' => array('cObject.' => array(*DEEP NESTED ARRAY*))), '10.' => array('default.' => array('dataWrap' => '<h2 class="panel-title">|</h2>')))))), 'singleColumnHorizontal.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => 'COA', 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array(*DEEP NESTED ARRAY*))), '< tt_content'), 'wrap' => '<div class="row">|</div>')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'medium-width-12,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:parentgrid_tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'tabs.' => array('setCurrent' => 'navigation,navigation-tabs', 'setCurrent.' => array('override.' => array('dataWrap' => 'navigation,{field:tx_themes_behaviour},{field:tx_themes_responsive},{field:tx_themes_variants}', 'if.' => array('isTrue.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_responsive},{field:tx_themes_variants}'))), 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('variantsMapping' => '< lib.content.cssMap.variants', 'responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour.tabs.navigation')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Tabs.html'), 'columns.' => array('0.' => array('renderObj' => '< tt_content', 'renderObj.' => array('stdWrap.' => array('preCObject' => 'LOAD_REGISTER', 'preCObject.' => array('containerId.' => array(*DEEP NESTED ARRAY*), 'containerClasses.' => array(*DEEP NESTED ARRAY*)), 'wrap2' => '<div role="tabpanel" id="{register:containerId}" class="{register:containerClasses}">|</div>', 'wrap2.' => array('insertData' => '1'), 'append' => 'RESTORE_REGISTER'))))), '2ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-6', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-6', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'), '3ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('2.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-3 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'), '4ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '2.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-3 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '3.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-4 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'themes_buttoncontent_pi1' => 'COA', 'themes_buttoncontent_pi1.' => array('wrap' => '<div class="btn-group">|</div>', 'wrap.' => array('fieldRequired' => 'tx_themes_buttoncontent'), 'LOAD_REGISTER', '10.' => array('buttonClasses' => 'button-default', 'buttonClasses.' => array('override.' => array('dataWrap' => '{field:tx_themes_variants}', 'fieldRequired' => 'tx_themes_variants'), 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('variantsMapping' => '< lib.content.cssMap.variants.buttons'))), 'TEXT', '20.' => array('field' => 'header', 'stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('field' => 'tx_themes_icon', 'fielRequired' => 'tx_themes_icon', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('iconMapping' => '< lib.icons.cssMap')), 'wrap' => '<i class="|"></i>'), 'noTrimWrap' => '|| |', 'noTrimWrap.' => array('if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent')))), 'typolink.' => array('parameter.' => array('field' => 'header_link', 'if.' => array('isFalse.' => array('field' => 'tx_themes_buttoncontent'))), 'ATagParams.' => array('dataWrap' => 'class="{register:buttonClasses}" role="button"', 'dataWrap.' => array('override' => 'class="{register:buttonClasses} dropdown-toggle" data-toggle="dropdown" aria-expanded="false" role="button"', 'override.' => array('if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent')))))), 'wrap' => '<button type="button" class="{register:buttonClasses}">|</button>', 'wrap.' => array('if.' => array('isTrue.' => array('field' => 'header_link'), 'isFalse.' => array('field' => 'tx_themes_buttoncontent'), 'negate' => '1'), 'insertData' => '1', 'override' => '<button type="button" class="{register:buttonClasses} dropdown-toggle" data-toggle="dropdown" aria-expanded="false">|<span class="caret"></span></button>', 'override.' => array('insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent'))))), 'COA', '30.' => array('stdWrap.' => array('fieldRequired' => 'tx_themes_buttoncontent'), 'wrap' => '<ul class="dropdown-menu" role="menu">|</ul>', 'CONTENT', '10.' => array('table' => 'tx_themes_buttoncontent', 'select.' => array('andWhere.' => array('dataWrap' => 'tt_content = {field:uid}')), 'renderObj' => 'TEXT', 'renderObj.' => array('stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('field' => 'icon', 'fielRequired' => 'icon', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('iconMapping' => '< lib.icons.cssMap')), 'wrap' => '<i class="|"></i>')), 'field' => 'linktext', 'typolink.' => array('parameter.' => array('field' => 'linktarget'), 'ATagTitle.' => array('field' => 'linktitle')), 'wrap' => '<li>|</li>'))), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesButtonDataProcessor')), 'menu.' => array('dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), 'headerslider' => '< lib.contentElement', 'headerslider.' => array('templateName' => 'Headerslider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'imagegroup' => '< lib.contentElement', 'imagegroup.' => array('templateName' => 'Imagegroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'menuteaser' => '< lib.contentElement', 'menuteaser.' => array('templateName' => 'Menuteaser', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'teaser' => '< lib.contentElement', 'teaser.' => array('templateName' => 'Teaser', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'waveheader' => '< lib.contentElement', 'waveheader.' => array('templateName' => 'Waveheader', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))))))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('if.' => array('value' => 'gridelements_pi1', 'equals.' => array('field' => 'CType'), 'negate' => '1'), 'default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'variantMapping' => '< lib.content.cssMap.variants'))))))), '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'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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', 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), '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'))), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'themes_theme' => 'USER', 'themes_theme.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'pluginName' => 'Theme'), 'jakotacookieoptin_optin' => 'USER', 'jakotacookieoptin_optin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'JakotaCookieOptin', 'pluginName' => 'OptIn'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'vesseldb_vesseldata' => 'USER', 'vesseldb_vesseldata.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'), 'vesseldb_jsonactions' => 'USER', 'vesseldb_jsonactions.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'JsonActions')), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), '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'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction'))), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '2ColumnGrid' => '< lib.gridelements.defaultGridSetup', '3ColumnGrid' => '< lib.gridelements.defaultGridSetup', '4ColumnGrid' => '< lib.gridelements.defaultGridSetup', 'accordion.' => array('setCurrent.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_responsive}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'behaviourAccordionMapping' => '< lib.content.cssMap.behaviour.accordion', 'variantMapping' => '< lib.content.cssMap.variants')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Accordion.html'), 'columns.' => array('0.' => array('renderObj' => '< tt_content'))), 'carousel.' => array('setCurrent.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_responsive}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'variantMapping' => '< lib.content.cssMap.variants')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Carousel.html'), 'columns.' => array('0.' => array('renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'textpic' => 'COA', 'textpic.' => array('FILES', '10.' => array('references.' => array(*DEEP NESTED ARRAY*), 'begin' => '0', 'maxItems' => '1', 'renderObj' => 'IMAGE', 'renderObj.' => array(*DEEP NESTED ARRAY*)), 'COA', '20.' => array('wrap' => '<div class="carousel-caption">|</div>', 'TEXT', '10.' => array(*DEEP NESTED ARRAY*), 'TEXT', '20.' => array(*DEEP NESTED ARRAY*))), 'textmedia' => 'COA', 'textmedia.' => array('FILES', '10.' => array('references.' => array(*DEEP NESTED ARRAY*), 'begin' => '0', 'maxItems' => '1', 'renderObj' => 'IMAGE', 'renderObj.' => array(*DEEP NESTED ARRAY*)), 'COA', '20.' => array('wrap' => '<div class="carousel-caption">|</div>', 'TEXT', '10.' => array(*DEEP NESTED ARRAY*), 'TEXT', '20.' => array(*DEEP NESTED ARRAY*))))))), 'container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_columnsettings},{field:tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'row.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_columnsettings},{field:tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||', 'if.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage', 'innerWrap' => '|</div>', 'innerWrap.' => array('fieldRequired' => 'tx_themes_enforceequalcolumnheight', 'prepend' => 'TEXT', 'prepend.' => array('field' => 'tx_themes_enforceequalcolumnheight', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveRowEqualHeightMapping' => '< lib.content.cssMap.responsive.row.equalHeight')), 'wrap' => '<div class="|">')))), 'singleColumn.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'medium-width-12,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:parentgrid_tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*), 'dataWrap.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'singleColumnHeaderFooter.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('wrap' => '<div class="panel-body">|</div>', 'renderObj' => '< tt_content'), '1.' => array('wrap' => '<div class="panel-footer">|</div>', 'required' => '1', 'renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'panel-default,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => 'COA', 'prepend.' => array('wrap' => '<div class="panel-heading">|</div>', '< lib.stdheader', '10.' => array('3.' => array('headerClass.' => array('cObject.' => array(*DEEP NESTED ARRAY*))), '10.' => array('default.' => array('dataWrap' => '<h2 class="panel-title">|</h2>')))))), 'singleColumnHorizontal.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => 'COA', 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array(*DEEP NESTED ARRAY*))), '< tt_content'), 'wrap' => '<div class="row">|</div>')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'medium-width-12,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:parentgrid_tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'tabs.' => array('setCurrent' => 'navigation,navigation-tabs', 'setCurrent.' => array('override.' => array('dataWrap' => 'navigation,{field:tx_themes_behaviour},{field:tx_themes_responsive},{field:tx_themes_variants}', 'if.' => array('isTrue.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_responsive},{field:tx_themes_variants}'))), 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('variantsMapping' => '< lib.content.cssMap.variants', 'responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour.tabs.navigation')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Tabs.html'), 'columns.' => array('0.' => array('renderObj' => '< tt_content', 'renderObj.' => array('stdWrap.' => array('preCObject' => 'LOAD_REGISTER', 'preCObject.' => array('containerId.' => array(*DEEP NESTED ARRAY*), 'containerClasses.' => array(*DEEP NESTED ARRAY*)), 'wrap2' => '<div role="tabpanel" id="{register:containerId}" class="{register:containerClasses}">|</div>', 'wrap2.' => array('insertData' => '1'), 'append' => 'RESTORE_REGISTER'))))), '2ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-6', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-6', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'), '3ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('2.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-3 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'), '4ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '2.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-3 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '3.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-4 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'themes_buttoncontent_pi1' => 'COA', 'themes_buttoncontent_pi1.' => array('wrap' => '<div class="btn-group">|</div>', 'wrap.' => array('fieldRequired' => 'tx_themes_buttoncontent'), 'LOAD_REGISTER', '10.' => array('buttonClasses' => 'button-default', 'buttonClasses.' => array('override.' => array('dataWrap' => '{field:tx_themes_variants}', 'fieldRequired' => 'tx_themes_variants'), 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('variantsMapping' => '< lib.content.cssMap.variants.buttons'))), 'TEXT', '20.' => array('field' => 'header', 'stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('field' => 'tx_themes_icon', 'fielRequired' => 'tx_themes_icon', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('iconMapping' => '< lib.icons.cssMap')), 'wrap' => '<i class="|"></i>'), 'noTrimWrap' => '|| |', 'noTrimWrap.' => array('if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent')))), 'typolink.' => array('parameter.' => array('field' => 'header_link', 'if.' => array('isFalse.' => array('field' => 'tx_themes_buttoncontent'))), 'ATagParams.' => array('dataWrap' => 'class="{register:buttonClasses}" role="button"', 'dataWrap.' => array('override' => 'class="{register:buttonClasses} dropdown-toggle" data-toggle="dropdown" aria-expanded="false" role="button"', 'override.' => array('if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent')))))), 'wrap' => '<button type="button" class="{register:buttonClasses}">|</button>', 'wrap.' => array('if.' => array('isTrue.' => array('field' => 'header_link'), 'isFalse.' => array('field' => 'tx_themes_buttoncontent'), 'negate' => '1'), 'insertData' => '1', 'override' => '<button type="button" class="{register:buttonClasses} dropdown-toggle" data-toggle="dropdown" aria-expanded="false">|<span class="caret"></span></button>', 'override.' => array('insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent'))))), 'COA', '30.' => array('stdWrap.' => array('fieldRequired' => 'tx_themes_buttoncontent'), 'wrap' => '<ul class="dropdown-menu" role="menu">|</ul>', 'CONTENT', '10.' => array('table' => 'tx_themes_buttoncontent', 'select.' => array('andWhere.' => array('dataWrap' => 'tt_content = {field:uid}')), 'renderObj' => 'TEXT', 'renderObj.' => array('stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('field' => 'icon', 'fielRequired' => 'icon', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('iconMapping' => '< lib.icons.cssMap')), 'wrap' => '<i class="|"></i>')), 'field' => 'linktext', 'typolink.' => array('parameter.' => array('field' => 'linktarget'), 'ATagTitle.' => array('field' => 'linktitle')), 'wrap' => '<li>|</li>'))), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesButtonDataProcessor')), 'menu.' => array('dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), 'headerslider' => '< lib.contentElement', 'headerslider.' => array('templateName' => 'Headerslider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'imagegroup' => '< lib.contentElement', 'imagegroup.' => array('templateName' => 'Imagegroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'menuteaser' => '< lib.contentElement', 'menuteaser.' => array('templateName' => 'Menuteaser', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'teaser' => '< lib.contentElement', 'teaser.' => array('templateName' => 'Teaser', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'waveheader' => '< lib.contentElement', 'waveheader.' => array('templateName' => 'Waveheader', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))))))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('if.' => array('value' => 'gridelements_pi1', 'equals.' => array('field' => 'CType'), 'negate' => '1'), 'default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'variantMapping' => '< lib.content.cssMap.variants'))))))), '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'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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', 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), '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'))), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'themes_theme' => 'USER', 'themes_theme.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'pluginName' => 'Theme'), 'jakotacookieoptin_optin' => 'USER', 'jakotacookieoptin_optin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'JakotaCookieOptin', 'pluginName' => 'OptIn'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'vesseldb_vesseldata' => 'USER', 'vesseldb_vesseldata.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'), 'vesseldb_jsonactions' => 'USER', 'vesseldb_jsonactions.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'JsonActions')), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), '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'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction'))), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '2ColumnGrid' => '< lib.gridelements.defaultGridSetup', '3ColumnGrid' => '< lib.gridelements.defaultGridSetup', '4ColumnGrid' => '< lib.gridelements.defaultGridSetup', 'accordion.' => array('setCurrent.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_responsive}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'behaviourAccordionMapping' => '< lib.content.cssMap.behaviour.accordion', 'variantMapping' => '< lib.content.cssMap.variants')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Accordion.html'), 'columns.' => array('0.' => array('renderObj' => '< tt_content'))), 'carousel.' => array('setCurrent.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_responsive}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'variantMapping' => '< lib.content.cssMap.variants')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Carousel.html'), 'columns.' => array('0.' => array('renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'textpic' => 'COA', 'textpic.' => array('FILES', '10.' => array('references.' => array(*DEEP NESTED ARRAY*), 'begin' => '0', 'maxItems' => '1', 'renderObj' => 'IMAGE', 'renderObj.' => array(*DEEP NESTED ARRAY*)), 'COA', '20.' => array('wrap' => '<div class="carousel-caption">|</div>', 'TEXT', '10.' => array(*DEEP NESTED ARRAY*), 'TEXT', '20.' => array(*DEEP NESTED ARRAY*))), 'textmedia' => 'COA', 'textmedia.' => array('FILES', '10.' => array('references.' => array(*DEEP NESTED ARRAY*), 'begin' => '0', 'maxItems' => '1', 'renderObj' => 'IMAGE', 'renderObj.' => array(*DEEP NESTED ARRAY*)), 'COA', '20.' => array('wrap' => '<div class="carousel-caption">|</div>', 'TEXT', '10.' => array(*DEEP NESTED ARRAY*), 'TEXT', '20.' => array(*DEEP NESTED ARRAY*))))))), 'container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_columnsettings},{field:tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'row.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_columnsettings},{field:tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||', 'if.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage', 'innerWrap' => '|</div>', 'innerWrap.' => array('fieldRequired' => 'tx_themes_enforceequalcolumnheight', 'prepend' => 'TEXT', 'prepend.' => array('field' => 'tx_themes_enforceequalcolumnheight', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveRowEqualHeightMapping' => '< lib.content.cssMap.responsive.row.equalHeight')), 'wrap' => '<div class="|">')))), 'singleColumn.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'medium-width-12,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:parentgrid_tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*), 'dataWrap.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'singleColumnHeaderFooter.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('wrap' => '<div class="panel-body">|</div>', 'renderObj' => '< tt_content'), '1.' => array('wrap' => '<div class="panel-footer">|</div>', 'required' => '1', 'renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'panel-default,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => 'COA', 'prepend.' => array('wrap' => '<div class="panel-heading">|</div>', '< lib.stdheader', '10.' => array('3.' => array('headerClass.' => array('cObject.' => array(*DEEP NESTED ARRAY*))), '10.' => array('default.' => array('dataWrap' => '<h2 class="panel-title">|</h2>')))))), 'singleColumnHorizontal.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => 'COA', 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array(*DEEP NESTED ARRAY*))), '< tt_content'), 'wrap' => '<div class="row">|</div>')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'medium-width-12,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:parentgrid_tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'tabs.' => array('setCurrent' => 'navigation,navigation-tabs', 'setCurrent.' => array('override.' => array('dataWrap' => 'navigation,{field:tx_themes_behaviour},{field:tx_themes_responsive},{field:tx_themes_variants}', 'if.' => array('isTrue.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_responsive},{field:tx_themes_variants}'))), 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('variantsMapping' => '< lib.content.cssMap.variants', 'responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour.tabs.navigation')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Tabs.html'), 'columns.' => array('0.' => array('renderObj' => '< tt_content', 'renderObj.' => array('stdWrap.' => array('preCObject' => 'LOAD_REGISTER', 'preCObject.' => array('containerId.' => array(*DEEP NESTED ARRAY*), 'containerClasses.' => array(*DEEP NESTED ARRAY*)), 'wrap2' => '<div role="tabpanel" id="{register:containerId}" class="{register:containerClasses}">|</div>', 'wrap2.' => array('insertData' => '1'), 'append' => 'RESTORE_REGISTER'))))), '2ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-6', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-6', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'), '3ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('2.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-3 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'), '4ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '2.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-3 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '3.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-4 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'themes_buttoncontent_pi1' => 'COA', 'themes_buttoncontent_pi1.' => array('wrap' => '<div class="btn-group">|</div>', 'wrap.' => array('fieldRequired' => 'tx_themes_buttoncontent'), 'LOAD_REGISTER', '10.' => array('buttonClasses' => 'button-default', 'buttonClasses.' => array('override.' => array('dataWrap' => '{field:tx_themes_variants}', 'fieldRequired' => 'tx_themes_variants'), 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('variantsMapping' => '< lib.content.cssMap.variants.buttons'))), 'TEXT', '20.' => array('field' => 'header', 'stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('field' => 'tx_themes_icon', 'fielRequired' => 'tx_themes_icon', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('iconMapping' => '< lib.icons.cssMap')), 'wrap' => '<i class="|"></i>'), 'noTrimWrap' => '|| |', 'noTrimWrap.' => array('if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent')))), 'typolink.' => array('parameter.' => array('field' => 'header_link', 'if.' => array('isFalse.' => array('field' => 'tx_themes_buttoncontent'))), 'ATagParams.' => array('dataWrap' => 'class="{register:buttonClasses}" role="button"', 'dataWrap.' => array('override' => 'class="{register:buttonClasses} dropdown-toggle" data-toggle="dropdown" aria-expanded="false" role="button"', 'override.' => array('if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent')))))), 'wrap' => '<button type="button" class="{register:buttonClasses}">|</button>', 'wrap.' => array('if.' => array('isTrue.' => array('field' => 'header_link'), 'isFalse.' => array('field' => 'tx_themes_buttoncontent'), 'negate' => '1'), 'insertData' => '1', 'override' => '<button type="button" class="{register:buttonClasses} dropdown-toggle" data-toggle="dropdown" aria-expanded="false">|<span class="caret"></span></button>', 'override.' => array('insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent'))))), 'COA', '30.' => array('stdWrap.' => array('fieldRequired' => 'tx_themes_buttoncontent'), 'wrap' => '<ul class="dropdown-menu" role="menu">|</ul>', 'CONTENT', '10.' => array('table' => 'tx_themes_buttoncontent', 'select.' => array('andWhere.' => array('dataWrap' => 'tt_content = {field:uid}')), 'renderObj' => 'TEXT', 'renderObj.' => array('stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('field' => 'icon', 'fielRequired' => 'icon', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('iconMapping' => '< lib.icons.cssMap')), 'wrap' => '<i class="|"></i>')), 'field' => 'linktext', 'typolink.' => array('parameter.' => array('field' => 'linktarget'), 'ATagTitle.' => array('field' => 'linktitle')), 'wrap' => '<li>|</li>'))), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesButtonDataProcessor')), 'menu.' => array('dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), 'headerslider' => '< lib.contentElement', 'headerslider.' => array('templateName' => 'Headerslider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'imagegroup' => '< lib.contentElement', 'imagegroup.' => array('templateName' => 'Imagegroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'menuteaser' => '< lib.contentElement', 'menuteaser.' => array('templateName' => 'Menuteaser', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'teaser' => '< lib.contentElement', 'teaser.' => array('templateName' => 'Teaser', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'waveheader' => '< lib.contentElement', 'waveheader.' => array('templateName' => 'Waveheader', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))))), 'tt_content')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('if.' => array('value' => 'gridelements_pi1', 'equals.' => array('field' => 'CType'), 'negate' => '1'), 'default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'variantMapping' => '< lib.content.cssMap.variants'))))))), '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'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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', 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), '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'))), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'themes_theme' => 'USER', 'themes_theme.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'pluginName' => 'Theme'), 'jakotacookieoptin_optin' => 'USER', 'jakotacookieoptin_optin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'JakotaCookieOptin', 'pluginName' => 'OptIn'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'vesseldb_vesseldata' => 'USER', 'vesseldb_vesseldata.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'Vesseldata'), 'vesseldb_jsonactions' => 'USER', 'vesseldb_jsonactions.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Vesseldb', 'pluginName' => 'JsonActions')), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), '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'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction'))), 'KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '2ColumnGrid' => '< lib.gridelements.defaultGridSetup', '3ColumnGrid' => '< lib.gridelements.defaultGridSetup', '4ColumnGrid' => '< lib.gridelements.defaultGridSetup', 'accordion.' => array('setCurrent.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_responsive}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'behaviourAccordionMapping' => '< lib.content.cssMap.behaviour.accordion', 'variantMapping' => '< lib.content.cssMap.variants')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Accordion.html'), 'columns.' => array('0.' => array('renderObj' => '< tt_content'))), 'carousel.' => array('setCurrent.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_responsive}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour', 'variantMapping' => '< lib.content.cssMap.variants')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Carousel.html'), 'columns.' => array('0.' => array('renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'textpic' => 'COA', 'textpic.' => array('FILES', '10.' => array('references.' => array(*DEEP NESTED ARRAY*), 'begin' => '0', 'maxItems' => '1', 'renderObj' => 'IMAGE', 'renderObj.' => array(*DEEP NESTED ARRAY*)), 'COA', '20.' => array('wrap' => '<div class="carousel-caption">|</div>', 'TEXT', '10.' => array(*DEEP NESTED ARRAY*), 'TEXT', '20.' => array(*DEEP NESTED ARRAY*))), 'textmedia' => 'COA', 'textmedia.' => array('FILES', '10.' => array('references.' => array(*DEEP NESTED ARRAY*), 'begin' => '0', 'maxItems' => '1', 'renderObj' => 'IMAGE', 'renderObj.' => array(*DEEP NESTED ARRAY*)), 'COA', '20.' => array('wrap' => '<div class="carousel-caption">|</div>', 'TEXT', '10.' => array(*DEEP NESTED ARRAY*), 'TEXT', '20.' => array(*DEEP NESTED ARRAY*))))))), 'container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_columnsettings},{field:tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'row.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => '{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:tx_themes_columnsettings},{field:tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||', 'if.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage', 'innerWrap' => '|</div>', 'innerWrap.' => array('fieldRequired' => 'tx_themes_enforceequalcolumnheight', 'prepend' => 'TEXT', 'prepend.' => array('field' => 'tx_themes_enforceequalcolumnheight', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('responsiveRowEqualHeightMapping' => '< lib.content.cssMap.responsive.row.equalHeight')), 'wrap' => '<div class="|">')))), 'singleColumn.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'medium-width-12,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:parentgrid_tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*), 'dataWrap.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'singleColumnHeaderFooter.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('wrap' => '<div class="panel-body">|</div>', 'renderObj' => '< tt_content'), '1.' => array('wrap' => '<div class="panel-footer">|</div>', 'required' => '1', 'renderObj' => '< tt_content')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'panel-default,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => 'COA', 'prepend.' => array('wrap' => '<div class="panel-heading">|</div>', '< lib.stdheader', '10.' => array('3.' => array('headerClass.' => array('cObject.' => array(*DEEP NESTED ARRAY*))), '10.' => array('default.' => array('dataWrap' => '<h2 class="panel-title">|</h2>')))))), 'singleColumnHorizontal.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '0.' => array('renderObj' => 'COA', 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array(*DEEP NESTED ARRAY*))), '< tt_content'), 'wrap' => '<div class="row">|</div>')), 'innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('TEXT', '40.' => array('dataWrap' => 'medium-width-12,{field:tx_themes_responsive},{field:tx_themes_behaviour},{field:tx_themes_variants},{field:parentgrid_tx_themes_enforceequalcolumnheight}', 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('prepend' => '< lib.containerBackgroundImage')), 'tabs.' => array('setCurrent' => 'navigation,navigation-tabs', 'setCurrent.' => array('override.' => array('dataWrap' => 'navigation,{field:tx_themes_behaviour},{field:tx_themes_responsive},{field:tx_themes_variants}', 'if.' => array('isTrue.' => array('dataWrap' => '{field:tx_themes_behaviour},{field:tx_themes_responsive},{field:tx_themes_variants}'))), 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('variantsMapping' => '< lib.content.cssMap.variants', 'responsiveMapping' => '< lib.content.cssMap.responsive', 'behaviourMapping' => '< lib.content.cssMap.behaviour.tabs.navigation')), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:themes_gridelements/Resources/Private/Templates/Elements/Tabs.html'), 'columns.' => array('0.' => array('renderObj' => '< tt_content', 'renderObj.' => array('stdWrap.' => array('preCObject' => 'LOAD_REGISTER', 'preCObject.' => array('containerId.' => array(*DEEP NESTED ARRAY*), 'containerClasses.' => array(*DEEP NESTED ARRAY*)), 'wrap2' => '<div role="tabpanel" id="{register:containerId}" class="{register:containerClasses}">|</div>', 'wrap2.' => array('insertData' => '1'), 'append' => 'RESTORE_REGISTER'))))), '2ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-6', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-6', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'), '3ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('2.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-4', 'noTrimWrap' => '|<div class="column-3 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'), '4ColumnGrid.' => array('innerWrap.' => array('cObject.' => array('default.' => array('20.' => array('40.' => array('postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '50.' => array('value' => 'row', 'noTrimWrap' => '| ||'))))), 'columns.' => array('0.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '0', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-1 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '1.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '1', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-2 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '2.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '2', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-3 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>'), '3.' => array('prepend' => 'COA', 'prepend.' => array('TEXT', '10.' => array('field' => 'flexform_column_widths_md', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '20.' => array('field' => 'flexform_column_widths_sm', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '30.' => array('field' => 'flexform_column_widths_xs', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'TEXT', '40.' => array('field' => 'flexform_column_widths_lg', 'required' => '1', 'listNum' => '3', 'listNum.' => array('splitChar' => '#'), 'wrap' => ',|'), 'stdWrap.' => array('stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array(*DEEP NESTED ARRAY*)), 'ifEmpty' => 'medium-width-3', 'noTrimWrap' => '|<div class="column-4 |">|')), 'renderObj' => '< tt_content', 'wrap' => '|</div>')), 'wrap' => '<div class="row">|</div>'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'themes_buttoncontent_pi1' => 'COA', 'themes_buttoncontent_pi1.' => array('wrap' => '<div class="btn-group">|</div>', 'wrap.' => array('fieldRequired' => 'tx_themes_buttoncontent'), 'LOAD_REGISTER', '10.' => array('buttonClasses' => 'button-default', 'buttonClasses.' => array('override.' => array('dataWrap' => '{field:tx_themes_variants}', 'fieldRequired' => 'tx_themes_variants'), 'postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('variantsMapping' => '< lib.content.cssMap.variants.buttons'))), 'TEXT', '20.' => array('field' => 'header', 'stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('field' => 'tx_themes_icon', 'fielRequired' => 'tx_themes_icon', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('iconMapping' => '< lib.icons.cssMap')), 'wrap' => '<i class="|"></i>'), 'noTrimWrap' => '|| |', 'noTrimWrap.' => array('if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent')))), 'typolink.' => array('parameter.' => array('field' => 'header_link', 'if.' => array('isFalse.' => array('field' => 'tx_themes_buttoncontent'))), 'ATagParams.' => array('dataWrap' => 'class="{register:buttonClasses}" role="button"', 'dataWrap.' => array('override' => 'class="{register:buttonClasses} dropdown-toggle" data-toggle="dropdown" aria-expanded="false" role="button"', 'override.' => array('if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent')))))), 'wrap' => '<button type="button" class="{register:buttonClasses}">|</button>', 'wrap.' => array('if.' => array('isTrue.' => array('field' => 'header_link'), 'isFalse.' => array('field' => 'tx_themes_buttoncontent'), 'negate' => '1'), 'insertData' => '1', 'override' => '<button type="button" class="{register:buttonClasses} dropdown-toggle" data-toggle="dropdown" aria-expanded="false">|<span class="caret"></span></button>', 'override.' => array('insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'tx_themes_buttoncontent'))))), 'COA', '30.' => array('stdWrap.' => array('fieldRequired' => 'tx_themes_buttoncontent'), 'wrap' => '<ul class="dropdown-menu" role="menu">|</ul>', 'CONTENT', '10.' => array('table' => 'tx_themes_buttoncontent', 'select.' => array('andWhere.' => array('dataWrap' => 'tt_content = {field:uid}')), 'renderObj' => 'TEXT', 'renderObj.' => array('stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('field' => 'icon', 'fielRequired' => 'icon', 'stdWrap.' => array('postUserFunc' => 'KayStrobach\\Themes\\Frontend\\CssClassMapper->mapGenericToFramework', 'postUserFunc.' => array('iconMapping' => '< lib.icons.cssMap')), 'wrap' => '<i class="|"></i>')), 'field' => 'linktext', 'typolink.' => array('parameter.' => array('field' => 'linktarget'), 'ATagTitle.' => array('field' => 'linktitle')), 'wrap' => '<li>|</li>'))), 'dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesButtonDataProcessor')), 'menu.' => array('dataProcessing.' => array('KayStrobach\\Themes\\DataProcessing\\ThemesVariantsDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesBehaviourDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesResponsiveDataProcessor', 'KayStrobach\\Themes\\DataProcessing\\ThemesIconDataProcessor')), 'headerslider' => '< lib.contentElement', 'headerslider.' => array('templateName' => 'Headerslider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'imagegroup' => '< lib.contentElement', 'imagegroup.' => array('templateName' => 'Imagegroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'menuteaser' => '< lib.contentElement', 'menuteaser.' => array('templateName' => 'Menuteaser', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'teaser' => '< lib.contentElement', 'teaser.' => array('templateName' => 'Teaser', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'waveheader' => '< lib.contentElement', 'waveheader.' => array('templateName' => 'Waveheader', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))))), '')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 95
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), '50')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('CONTENT', '50.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1'))))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 42
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('CONTENT', '50.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1'))))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('CONTENT', '50.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1'))))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('CONTENT', '50.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1'))), 'lib.content.header')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('main' => 'COA', 'main.' => array('CONTENT', '50.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0'))), 'menu' => 'COA', 'menu.' => array('stdWrap.' => array('prefixComment' => '2|Output of lib.content.menu', 'outerWrap' => '|'), '< lib.menu.sub', 'CONTENT', '50.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=1'))), 'sidebar' => 'COA', 'sidebar.' => array('CONTENT', '50.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=2'))), 'feature' => 'COA', 'feature.' => array('CONTENT', '50.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=3'))), 'extended' => 'COA', 'extended.' => array('CONTENT', '50.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=4'))), 'cssMap.' => array('behaviour.' => array('container' => 'container', 'fade-in' => 'fade in', 'screenreader-only' => 'sr-only', 'screenreader-only-focusable' => 'sr-only-focusable', 'print-hidden' => 'hidden-print', 'print-visible-block' => 'visible-print-block', 'print-visible-inline' => 'visible-print-inline', 'print-visible-inline-block' => 'visible-print-inline-block', 'table-responsive' => 'table-responsive', '2ColumnGrid.' => array('pricing-table' => 'pricing'), '3ColumnGrid.' => array('pricing-table' => 'pricing'), '4ColumnGrid.' => array('pricing-table' => 'pricing'), 'accordion.' => array('accordion-first-open' => 'accordion-first-open'), 'tabs.' => array('navigation.' => array('navigation' => 'nav', 'navigation-pills' => 'nav-pills', 'navigation-tabs' => 'nav-tabs'), 'panes.' => array('tab-pane' => 'tab-pane', 'fade-in' => 'fade in', 'active' => 'active'))), 'responsive.' => array('column.' => array('equalHeight.' => array('medium-equalHeight' => 'col-md-height', 'small-equalHeight' => 'col-sm-height', 'extrasmall-equalHeight' => 'col-xs-height', 'large-equalHeight' => 'col-lg-height'), 'medium-width-1' => 'col-md-1', 'medium-width-2' => 'col-md-2', 'medium-width-3' => 'col-md-3', 'medium-width-4' => 'col-md-4', 'medium-width-5' => 'col-md-5', 'medium-width-6' => 'col-md-6', 'medium-width-7' => 'col-md-7', 'medium-width-8' => 'col-md-8', 'medium-width-9' => 'col-md-9', 'medium-width-10' => 'col-md-10', 'medium-width-11' => 'col-md-11', 'medium-width-12' => 'col-md-12', 'medium-offset-0' => 'col-md-offset-0', 'medium-offset-1' => 'col-md-offset-1', 'medium-offset-2' => 'col-md-offset-2', 'medium-offset-3' => 'col-md-offset-3', 'medium-offset-4' => 'col-md-offset-4', 'medium-offset-5' => 'col-md-offset-5', 'medium-offset-6' => 'col-md-offset-6', 'medium-offset-7' => 'col-md-offset-7', 'medium-offset-8' => 'col-md-offset-8', 'medium-offset-9' => 'col-md-offset-9', 'medium-offset-10' => 'col-md-offset-10', 'medium-offset-11' => 'col-md-offset-11', 'medium-offset-12' => 'col-md-offset-12', 'medium-pull-0' => 'col-md-pull-0', 'medium-pull-1' => 'col-md-pull-1', 'medium-pull-2' => 'col-md-pull-2', 'medium-pull-3' => 'col-md-pull-3', 'medium-pull-4' => 'col-md-pull-4', 'medium-pull-5' => 'col-md-pull-5', 'medium-pull-6' => 'col-md-pull-6', 'medium-pull-7' => 'col-md-pull-7', 'medium-pull-8' => 'col-md-pull-8', 'medium-pull-9' => 'col-md-pull-9', 'medium-pull-10' => 'col-md-pull-10', 'medium-pull-11' => 'col-md-pull-11', 'medium-pull-12' => 'col-md-pull-12', 'medium-push-0' => 'col-md-push-0', 'medium-push-1' => 'col-md-push-1', 'medium-push-2' => 'col-md-push-2', 'medium-push-3' => 'col-md-push-3', 'medium-push-4' => 'col-md-push-4', 'medium-push-5' => 'col-md-push-5', 'medium-push-6' => 'col-md-push-6', 'medium-push-7' => 'col-md-push-7', 'medium-push-8' => 'col-md-push-8', 'medium-push-9' => 'col-md-push-9', 'medium-push-10' => 'col-md-push-10', 'medium-push-11' => 'col-md-push-11', 'medium-push-12' => 'col-md-push-12', 'small-width-1' => 'col-sm-1', 'small-width-2' => 'col-sm-2', 'small-width-3' => 'col-sm-3', 'small-width-4' => 'col-sm-4', 'small-width-5' => 'col-sm-5', 'small-width-6' => 'col-sm-6', 'small-width-7' => 'col-sm-7', 'small-width-8' => 'col-sm-8', 'small-width-9' => 'col-sm-9', 'small-width-10' => 'col-sm-10', 'small-width-11' => 'col-sm-11', 'small-width-12' => 'col-sm-12', 'small-offset-0' => 'col-sm-offset-0', 'small-offset-1' => 'col-sm-offset-1', 'small-offset-2' => 'col-sm-offset-2', 'small-offset-3' => 'col-sm-offset-3', 'small-offset-4' => 'col-sm-offset-4', 'small-offset-5' => 'col-sm-offset-5', 'small-offset-6' => 'col-sm-offset-6', 'small-offset-7' => 'col-sm-offset-7', 'small-offset-8' => 'col-sm-offset-8', 'small-offset-9' => 'col-sm-offset-9', 'small-offset-10' => 'col-sm-offset-10', 'small-offset-11' => 'col-sm-offset-11', 'small-offset-12' => 'col-sm-offset-12', 'small-pull-0' => 'col-sm-pull-0', 'small-pull-1' => 'col-sm-pull-1', 'small-pull-2' => 'col-sm-pull-2', 'small-pull-3' => 'col-sm-pull-3', 'small-pull-4' => 'col-sm-pull-4', 'small-pull-5' => 'col-sm-pull-5', 'small-pull-6' => 'col-sm-pull-6', 'small-pull-7' => 'col-sm-pull-7', 'small-pull-8' => 'col-sm-pull-8', 'small-pull-9' => 'col-sm-pull-9', 'small-pull-10' => 'col-sm-pull-10', 'small-pull-11' => 'col-sm-pull-11', 'small-pull-12' => 'col-sm-pull-12', 'small-push-0' => 'col-sm-push-0', 'small-push-1' => 'col-sm-push-1', 'small-push-2' => 'col-sm-push-2', 'small-push-3' => 'col-sm-push-3', 'small-push-4' => 'col-sm-push-4', 'small-push-5' => 'col-sm-push-5', 'small-push-6' => 'col-sm-push-6', 'small-push-7' => 'col-sm-push-7', 'small-push-8' => 'col-sm-push-8', 'small-push-9' => 'col-sm-push-9', 'small-push-10' => 'col-sm-push-10', 'small-push-11' => 'col-sm-push-11', 'small-push-12' => 'col-sm-push-12', 'extrasmall-width-1' => 'col-xs-1', 'extrasmall-width-2' => 'col-xs-2', 'extrasmall-width-3' => 'col-xs-3', 'extrasmall-width-4' => 'col-xs-4', 'extrasmall-width-5' => 'col-xs-5', 'extrasmall-width-6' => 'col-xs-6', 'extrasmall-width-7' => 'col-xs-7', 'extrasmall-width-8' => 'col-xs-8', 'extrasmall-width-9' => 'col-xs-9', 'extrasmall-width-10' => 'col-xs-10', 'extrasmall-width-11' => 'col-xs-11', 'extrasmall-width-12' => 'col-xs-12', 'extrasmall-offset-0' => 'col-xs-offset-0', 'extrasmall-offset-1' => 'col-xs-offset-1', 'extrasmall-offset-2' => 'col-xs-offset-2', 'extrasmall-offset-3' => 'col-xs-offset-3', 'extrasmall-offset-4' => 'col-xs-offset-4', 'extrasmall-offset-5' => 'col-xs-offset-5', 'extrasmall-offset-6' => 'col-xs-offset-6', 'extrasmall-offset-7' => 'col-xs-offset-7', 'extrasmall-offset-8' => 'col-xs-offset-8', 'extrasmall-offset-9' => 'col-xs-offset-9', 'extrasmall-offset-10' => 'col-xs-offset-10', 'extrasmall-offset-11' => 'col-xs-offset-11', 'extrasmall-offset-12' => 'col-xs-offset-12', 'extrasmall-pull-0' => 'col-xs-pull-0', 'extrasmall-pull-1' => 'col-xs-pull-1', 'extrasmall-pull-2' => 'col-xs-pull-2', 'extrasmall-pull-3' => 'col-xs-pull-3', 'extrasmall-pull-4' => 'col-xs-pull-4', 'extrasmall-pull-5' => 'col-xs-pull-5', 'extrasmall-pull-6' => 'col-xs-pull-6', 'extrasmall-pull-7' => 'col-xs-pull-7', 'extrasmall-pull-8' => 'col-xs-pull-8', 'extrasmall-pull-9' => 'col-xs-pull-9', 'extrasmall-pull-10' => 'col-xs-pull-10', 'extrasmall-pull-11' => 'col-xs-pull-11', 'extrasmall-pull-12' => 'col-xs-pull-12', 'extrasmall-push-0' => 'col-xs-push-0', 'extrasmall-push-1' => 'col-xs-push-1', 'extrasmall-push-2' => 'col-xs-push-2', 'extrasmall-push-3' => 'col-xs-push-3', 'extrasmall-push-4' => 'col-xs-push-4', 'extrasmall-push-5' => 'col-xs-push-5', 'extrasmall-push-6' => 'col-xs-push-6', 'extrasmall-push-7' => 'col-xs-push-7', 'extrasmall-push-8' => 'col-xs-push-8', 'extrasmall-push-9' => 'col-xs-push-9', 'extrasmall-push-10' => 'col-xs-push-10', 'extrasmall-push-11' => 'col-xs-push-11', 'extrasmall-push-12' => 'col-xs-push-12', 'large-width-1' => 'col-lg-1', 'large-width-2' => 'col-lg-2', 'large-width-3' => 'col-lg-3', 'large-width-4' => 'col-lg-4', 'large-width-5' => 'col-lg-5', 'large-width-6' => 'col-lg-6', 'large-width-7' => 'col-lg-7', 'large-width-8' => 'col-lg-8', 'large-width-9' => 'col-lg-9', 'large-width-10' => 'col-lg-10', 'large-width-11' => 'col-lg-11', 'large-width-12' => 'col-lg-12', 'large-offset-0' => 'col-lg-offset-0', 'large-offset-1' => 'col-lg-offset-1', 'large-offset-2' => 'col-lg-offset-2', 'large-offset-3' => 'col-lg-offset-3', 'large-offset-4' => 'col-lg-offset-4', 'large-offset-5' => 'col-lg-offset-5', 'large-offset-6' => 'col-lg-offset-6', 'large-offset-7' => 'col-lg-offset-7', 'large-offset-8' => 'col-lg-offset-8', 'large-offset-9' => 'col-lg-offset-9', 'large-offset-10' => 'col-lg-offset-10', 'large-offset-11' => 'col-lg-offset-11', 'large-offset-12' => 'col-lg-offset-12', 'large-pull-0' => 'col-lg-pull-0', 'large-pull-1' => 'col-lg-pull-1', 'large-pull-2' => 'col-lg-pull-2', 'large-pull-3' => 'col-lg-pull-3', 'large-pull-4' => 'col-lg-pull-4', 'large-pull-5' => 'col-lg-pull-5', 'large-pull-6' => 'col-lg-pull-6', 'large-pull-7' => 'col-lg-pull-7', 'large-pull-8' => 'col-lg-pull-8', 'large-pull-9' => 'col-lg-pull-9', 'large-pull-10' => 'col-lg-pull-10', 'large-pull-11' => 'col-lg-pull-11', 'large-pull-12' => 'col-lg-pull-12', 'large-push-0' => 'col-lg-push-0', 'large-push-2' => 'col-lg-push-2', 'large-push-3' => 'col-lg-push-3', 'large-push-4' => 'col-lg-push-4', 'large-push-5' => 'col-lg-push-5', 'large-push-6' => 'col-lg-push-6', 'large-push-7' => 'col-lg-push-7', 'large-push-8' => 'col-lg-push-8', 'large-push-9' => 'col-lg-push-9', 'large-push-10' => 'col-lg-push-10', 'large-push-11' => 'col-lg-push-11', 'large-push-12' => 'col-lg-push-12'), 'row.' => array('equalHeight.' => array('medium-equalHeight' => 'row row-md-height row-lg-equal-height', 'small-equalHeight' => 'row row-sm-height row-sm-equal-height', 'extrasmall-equalHeight' => 'row row-xs-height row-xs-equal-height', 'large-equalHeight' => 'row row-lg-height row-lg-equal-height'), 'default-row' => 'row', 'medium-equalHeight' => 'container container-md-height', 'small-equalHeight' => 'container container-sm-height', 'extrasmall-equalHeight' => 'container container-xs-height', 'large-equalHeight' => 'container container-lg-height'), 'medium-default' => '', 'medium-inline' => 'visible-md-inline', 'medium-inline-block' => 'visible-md-inline-block', 'medium-block' => 'visible-md-block', 'medium-hidden' => 'hidden-md', 'small-default' => '', 'small-inline' => 'visible-sm-inline', 'small-inline-block' => 'visible-sm-inline-block', 'small-block' => 'visible-sm-block', 'small-hidden' => 'hidden-sm', 'extrasmall-default' => '', 'extrasmall-inline' => 'visible-xs-inline', 'extrasmall-inline-block' => 'visible-xs-inline-block', 'extrasmall-block' => 'visible-xs-block', 'extrasmall-hidden' => 'hidden-xs', 'large-default' => '', 'large-inline' => 'visible-lg-inline', 'large-inline-block' => 'visible-lg-inline-block', 'large-block' => 'visible-lg-block', 'large-hidden' => 'hidden-lg'), 'variants.' => array('singleColumnHeaderFooter.' => array('panel-default' => 'panel panel-default', 'panel-heading' => 'panel-heading', 'panel-body' => 'panel-body', 'panel-footer' => 'panel-footer', 'panel-primary' => 'panel panel-primary', 'panel-success' => 'panel panel-success', 'panel-info' => 'panel panel-info', 'panel-warning' => 'panel panel-warning', 'panel-danger' => 'panel panel-danger'), 'alert-success' => 'alert alert-success', 'alert-info' => 'alert alert-info', 'alert-warning' => 'alert alert-warning', 'alert-danger' => 'alert alert-danger', 'wide-screen' => 'jumbotron', 'framed' => 'well', 'framed-small' => 'well well-sm', 'framed-large' => 'well well-lg', 'page-header' => 'page-header', 'navigation-pills-color1' => 'nav-pills-color1', 'navigation-pills-color2' => 'nav-pills-color2', 'navigation-pills-color3' => 'nav-pills-color3', 'navigation-pills-color4' => 'nav-pills-color4', 'navigation-pills-color5' => 'nav-pills-color5', 'navigation-pills-color6' => 'nav-pills-color6', 'buttons.' => array('button-default' => 'btn btn-default', 'button-primary' => 'btn btn-primary', 'button-success' => 'btn btn-success', 'button-info' => 'btn btn-info', 'button-warning' => 'btn btn-warning', 'button-danger' => 'btn btn-danger', 'button-large' => 'btn btn-lg', 'button-small' => 'btn btn-sm', 'button-extra-small' => 'btn btn-xs', 'button-block' => 'btn btn-block'))), 'header' => 'COA', 'header.' => array('CONTENT', '50.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')))), 'lib.content.header', 'header')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => null, 'typoscriptObjectPath' => 'lib.content.header', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/vhosts/de.hammonia-reederei/htdocs/typo3temp/var/cache/code/fluid_template/Theme_action_index_948fa6a83acd2570f289fe44f7c64a186307668b.php line 53
$arguments1['currentValueKey'] = NULL;
$arguments1['table'] = '';
$arguments1['typoscriptObjectPath'] = 'lib.content.header';
$renderChildrenClosure2 = ($arguments1['data'] !== null) ? function() use ($arguments1) { return $arguments1['data']; } : $renderChildrenClosure2;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
  </section>
  <!-- Banner End-->
at Theme_action_index_948fa6a83acd2570f289fe44f7c64a186307668b->section_808d7dca8a74d84af27a2d6602c3d786de45fe1e(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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('Default', array(), false)
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 143
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Default', '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 /home/vhosts/de.hammonia-reederei/htdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_0494042ba479118bf9fd1d07b5d25d9c80b7523d.php line 352
$arguments21['contentAs'] = NULL;
$arguments21['debug'] = true;
$arguments21['section'] = 'Default';

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

$output0 .= '
    <!-- Footer -->
    <footer class="footer">
at layout_Default_html_0494042ba479118bf9fd1d07b5d25d9c80b7523d->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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 /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 504
            $actionResult = $this->{$this->errorMethodName}();
        }

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

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

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

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

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

    /**
     * @return string
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'vendorName' => 'KayStrobach', 'pluginKey' => 'Theme', 'pluginName' => 'Theme', 'controller' => 'Theme', 'action' => 'Index', 'settings' => '< plugin.tx_themes.settings', 'persistence' => '< plugin.tx_themes.persistence', 'view' => '< plugin.tx_themes.view'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'vendorName' => 'KayStrobach', 'pluginKey' => 'Theme', 'pluginName' => 'Theme', 'controller' => 'Theme', 'action' => 'Index', 'settings' => '< plugin.tx_themes.settings', 'persistence' => '< plugin.tx_themes.persistence', 'view' => '< plugin.tx_themes.view')))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5720
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    $classObj->cObj = $this;
                    $content = call_user_func_array($callable, [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'vendorName' => 'KayStrobach', 'pluginKey' => 'Theme', 'pluginName' => 'Theme', 'controller' => 'Theme', 'action' => 'Index', 'settings' => '< plugin.tx_themes.settings', 'persistence' => '< plugin.tx_themes.persistence', 'view' => '< plugin.tx_themes.view'), '')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 43
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'vendorName' => 'KayStrobach', 'pluginKey' => 'Theme', 'pluginName' => 'Theme', 'controller' => 'Theme', 'action' => 'Index', 'settings' => '< plugin.tx_themes.settings', 'persistence' => '< plugin.tx_themes.persistence', 'view' => '< plugin.tx_themes.view'))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'vendorName' => 'KayStrobach', 'pluginKey' => 'Theme', 'pluginName' => 'Theme', 'controller' => 'Theme', 'action' => 'Index', 'settings' => '< plugin.tx_themes.settings', 'persistence' => '< plugin.tx_themes.persistence', 'view' => '< plugin.tx_themes.view'))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'vendorName' => 'KayStrobach', 'pluginKey' => 'Theme', 'pluginName' => 'Theme', 'controller' => 'Theme', 'action' => 'Index', 'settings' => '< plugin.tx_themes.settings', 'persistence' => '< plugin.tx_themes.persistence', 'view' => '< plugin.tx_themes.view'), '100')
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('typeNum' => '0', 'USER', '100.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Themes', 'vendorName' => 'KayStrobach', 'pluginKey' => 'Theme', 'pluginName' => 'Theme', 'controller' => 'Theme', 'action' => 'Index', 'settings' => '< plugin.tx_themes.settings', 'persistence' => '< plugin.tx_themes.persistence', 'view' => '< plugin.tx_themes.view'), 'headerData.' => array('USER', '935.' => array('userFunc' => 'JAKOTA\\JakotaCookieOptin\\UserFunction\\AddCookieOptinJsAndCss->addCSS'), 'TEXT', '999.' => array('value' => '<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/apple-touch-icon-57x57.png" /><link rel="apple-touch-icon-precomposed" sizes="114x114" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/apple-touch-icon-114x114.png" /><link rel="apple-touch-icon-precomposed" sizes="72x72" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/apple-touch-icon-72x72.png" /><link rel="apple-touch-icon-precomposed" sizes="144x144" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/apple-touch-icon-144x144.png" /><link rel="apple-touch-icon-precomposed" sizes="60x60" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/apple-touch-icon-60x60.png" /><link rel="apple-touch-icon-precomposed" sizes="120x120" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/apple-touch-icon-120x120.png" /><link rel="apple-touch-icon-precomposed" sizes="76x76" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/apple-touch-icon-76x76.png" /><link rel="apple-touch-icon-precomposed" sizes="152x152" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/apple-touch-icon-152x152.png" /><link rel="icon" type="image/png" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/favicon-196x196.png" sizes="196x196" /><link rel="icon" type="image/png" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/favicon-96x96.png" sizes="96x96" /><link rel="icon" type="image/png" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/favicon-32x32.png" sizes="32x32" /><link rel="icon" type="image/png" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/favicon-16x16.png" sizes="16x16" /><link rel="icon" type="image/png" href="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/favicon-128.png" sizes="128x128" /><meta name="application-name" content="&nbsp;"/><meta name="msapplication-TileColor" content="#FFFFFF" /><meta name="msapplication-TileImage" content="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/mstile-144x144.png" /><meta name="msapplication-square70x70logo" content="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/mstile-70x70.png" /><meta name="msapplication-square150x150logo" content="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/mstile-150x150.png" /><meta name="msapplication-wide310x150logo" content="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/mstile-310x150.png" /><meta name="msapplication-square310x310logo" content="/typo3conf/ext/theme_hammonia/Resources/Public/images/favicon/mstile-310x310.png" />'), 'TEXT', '1.' => array('value' => '<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />'), 'TEXT', '9934.' => array('value' => '<!-- concept and realisation by __________________________ JAKOTA Design Group Leonhardstrasse 22 D-18057 Rostock fon 0381-4997033 fax 0381-4900054 home https://www.jakota.de/ ')), 'includeCSS.' => array('cookiePopup' => 'EXT:jakota_cookie_optin/Resources/Public/css/cookiePopup.css', 'powermailBasicCss' => 'EXT:powermail/Resources/Public/Css/Basic.css', 'style' => 'EXT:theme_hammonia/Resources/Public/css/style.css', 'style_ab' => 'EXT:theme_hammonia/Resources/Public/css/style_ab.css', 'indexedSearch' => 'EXT:theme_hammonia/Resources/Public/css/indexedSearch.css', 'slick' => 'EXT:theme_hammonia/Resources/Public/css/slick.css', 'responsive' => 'EXT:theme_hammonia/Resources/Public/css/responsive.css', 'responsive.' => array('media' => 'screen'), 'additions' => 'EXT:theme_hammonia/Resources/Public/css/additions.css', 'print' => 'EXT:theme_hammonia/Resources/Public/css/print.css', 'print.' => array('media' => 'print')), 'footerData.' => array('USER', '945.' => array('userFunc' => 'JAKOTA\\JakotaCookieOptin\\UserFunction\\AddCookieOptinJsAndCss->addJavaScript')), 'meta.' => array(), 'shortcutIcon' => 'typo3conf/ext/theme_bootstrap/Resources/Public/Icons/favicon.ico', 'bodyTagCObject' => 'TEXT', 'bodyTagCObject.' => array('field' => 'uid', 'wrap' => '<body id="pid-|" class="language-en">'), 'includeJSFooter.' => array('powermailJQueryDatepicker' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/jquery.datetimepicker.min.js', 'powermailJQueryFormValidation' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/parsley.min.js', 'powermailJQueryTabs' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Tabs.min.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'powermailMarketing' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Marketing.min.js', 'slick' => 'EXT:theme_hammonia/Resources/Public/js/slick.js', 'site' => 'EXT:theme_hammonia/Resources/Public/js/site.js'), 'COA', '3131.' => array('wrap' => '<script id="powermail_marketing_information"|></script>', 'TEXT', '10.' => array('noTrimWrap' => '| data-pid="|"|', 'data' => 'TSFE:id', 'intval' => '1'), 'TEXT', '20.' => array('noTrimWrap' => '| data-language="|"|', 'data' => 'TSFE:sys_language_uid', 'intval' => '1')), 'includeCSSLibs.' => array('bootstrap' => 'EXT:theme_hammonia/Resources/Public/css/bootstrap.min.css', 'fancybox' => 'EXT:theme_hammonia/Resources/Public/css/jquery.fancybox.css'), 'includeJSLibs.' => array('jquery' => 'EXT:theme_hammonia/Resources/Public/js/jquery-1.10.2.min.js', 'bootstrap' => 'EXT:theme_hammonia/Resources/Public/js/bootstrap.min.js', 'fancybox' => 'EXT:theme_hammonia/Resources/Public/js/jquery.fancybox.pack.js', 'selectbox' => 'EXT:theme_hammonia/Resources/Public/js/jquery.selectbox-0.2.min.js'), 'config.' => array('index_metatags' => '')))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 232
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 198
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 134
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

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

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

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

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 69
                return new RedirectResponse($externalUrl, 303);
            }
        }

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 86
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $this->controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 108
        }

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

    /**
     * Register the backend user as aspect
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 131
            }
        }

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

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 102
                unset($GLOBALS['TYPO3_REQUEST']);
            }
        }

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

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 83
        // Register the frontend user as aspect and within the session
        $this->setFrontendUserAspect($frontendUser);
        $request = $request->withAttribute('frontend.user', $frontendUser);

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

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

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

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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/home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0xffff9ab8e41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/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 /home/vhosts/_appintallstore/typo3/typo3-src/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/AbstractApplication.php line 85
     * @return ResponseInterface
     */
    protected function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->requestHandler->handle($request);
    }

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

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

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