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 SchmelzerMedien\Tradefairs\Domain\Model\TradeFair with identity "9" not found.

in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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('9', 'SchmelzerMedien\\Tradefairs\\Domain\\Model\\TradeFair')
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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('9', 'SchmelzerMedien\\Tradefairs\\Domain\\Model\\TradeFair', array(), object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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('9', 'SchmelzerMedien\\Tradefairs\\Domain\\Model\\TradeFair', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration), array())
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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('9', 'SchmelzerMedien\\Tradefairs\\Domain\\Model\\TradeFair', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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('9')
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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 /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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 /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 89
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $controller->processRequest($request, $response);
            } catch (StopActionException $ignoredException) {
            }
        }

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 183
    protected function handleRequest(): string
    {
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler();

        $response = $requestHandler->handleRequest();
        // If response is NULL after handling the request we need to stop
        // This happens for instance, when a USER object was converted to a USER_INT
        // @see TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()
        if ($response === null) {
at TYPO3\CMS\Extbase\Core\Bootstrap->handleRequest()
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1')))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5690
                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' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), '')
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 828
        }

        // 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' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                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' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), 'tt_content.list.20.schmelzermedientradefairs_pi1')
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'en', 'mail-body' => '', 'mail-subject' => '', 'mail-url' => 'mailto:', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => '', 'theme' => 'standard', 'twitter-via' => ''))), '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'), 'powermailcond_pi1' => 'USER', 'powermailcond_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'schmelzermedientradefairs_pi1' => 'USER', 'schmelzermedientradefairs_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), 'ccmediathek_mediathekplugin' => 'USER', 'ccmediathek_mediathekplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CcMediathek', 'pluginName' => 'Mediathekplugin'), 'cloospdfgenerator_pi1' => 'USER', 'cloospdfgenerator_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosPdfGenerator', 'pluginName' => 'Pi1'), 'cloosproducts_filterproducts' => 'USER', 'cloosproducts_filterproducts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts'), 'cloosproducts_filterproducts2' => 'USER', 'cloosproducts_filterproducts2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts2'), 'cloosproducts_showproduct' => 'USER', 'cloosproducts_showproduct.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Showproduct'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'oauth2client_manageproviders' => 'USER', 'oauth2client_manageproviders.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oauth2Client', 'pluginName' => 'ManageProviders'), 'oidc_pi1' => 'USER', 'oidc_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oidc', 'pluginName' => 'Pi1'), 'oidc_login' => '< plugin.tx_oidc_login'), 'tt_content.list.20.schmelzermedientradefairs_pi1', 'schmelzermedientradefairs_pi1')
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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' => 11252, 'pid' => 2160, 't3ver_oid' => 0, 'zzz_deleted_t3ver_id' => 0, 't3ver_wsid' => 0, 'zzz_deleted_t3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 11252, 'tstamp' => 1657262012, 'crdate' => 1657262000, 'cruser_id' => 26, 'hidden' => 0, 'sorting' => 1539, 'CType' => 'list', 'header' => 'Veletržní kalendář', 'header_position' => '', 'bodytext' => '', 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'zzz_deleted_imagecaption' => null, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '2159', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'zzz_deleted_spaceBefore' => 0, 'zzz_deleted_spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'zzz_deleted_imagecaption_position' => '', 'zzz_deleted_image_link' => null, 'image_zoom' => 0, 'zzz_deleted_image_noRows' => 0, 'zzz_deleted_image_effects' => 0, 'zzz_deleted_image_compression' => 0, 'zzz_deleted_altText' => null, 'zzz_deleted_titleText' => null, 'zzz_deleted_longdescURL' => null, 'header_layout' => '0', 'zzz_deleted_text_align' => '', 'zzz_deleted_text_face' => 0, 'zzz_deleted_text_size' => 0, 'zzz_deleted_text_color' => 0, 'zzz_deleted_text_properties' => 0, 'zzz_deleted_menu_type' => '0', 'list_type' => 'schmelzermedientradefairs_pi1', 'zzz_deleted_table_border' => 0, 'zzz_deleted_table_cellspacing' => 0, 'zzz_deleted_table_cellpadding' => 0, 'zzz_deleted_table_bgColor' => 0, 'zzz_deleted_select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'zzz_deleted_section_frame' => 0, 'date' => 0, 'zzz_deleted_multimedia' => null, 'zzz_deleted_image_frames' => 0, 'recursive' => 0, 'imageheight' => 0, 'zzz_deleted_rte_enabled' => 0, 'sys_language_uid' => 4, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lZH"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lNL"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lEN"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lFR"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lCS"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="options"> <language index="lDEF"> <field index="categoryTitles"> <value index="vDEF">Alle,Deutschland,Europa,Weltweit</value> </field> <field index="listElements"> <el index="el"> <field index="61e80939a2e5d892026183"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">STOM</value> </field> <field index="fairDate"> <value index="vDEF">05.-07. April 2022</value> </field> <field index="fairCity"> <value index="vDEF">Kielce</value> </field> <field index="fairCountry"> <value index="vDEF">Polen</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Polska</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3779</value> </field> <field index="link"> <value index="vDEF">https://www.targikielce.pl/en/stom</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de90fd157a8a437094097"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">TechniShow</value> </field> <field index="fairDate"> <value index="vDEF">30. August - 02. September 2022</value> </field> <field index="fairCity"> <value index="vDEF">Utrecht</value> </field> <field index="fairCountry"> <value index="vDEF">Niederlande</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Benelux</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3770</value> </field> <field index="link"> <value index="vDEF">https://www.technishow.nl/exposeren/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5fcf70aa96123973211211"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">1</value> </field> <field index="fairName"> <value index="vDEF">SCHWEISSEN &amp; SCHNEIDEN</value> </field> <field index="fairDate"> <value index="vDEF">11.-15. September 2023</value> </field> <field index="fairCity"> <value index="vDEF">Essen</value> </field> <field index="fairCountry"> <value index="vDEF">Deutschland</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Haiger</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2891</value> </field> <field index="link"> <value index="vDEF">https://www.schweissen-schneiden.com/fuegen-trennen-beschichten/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e808b1cb8cb582691614"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Nordic Welding Expo</value> </field> <field index="fairDate"> <value index="vDEF">29. November - 01. Dezember 2022</value> </field> <field index="fairCity"> <value index="vDEF">Tampere</value> </field> <field index="fairCountry"> <value index="vDEF">Finnland</value> </field> <field index="fairCompany"> <value index="vDEF">Meuro Tech</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3931</value> </field> <field index="link"> <value index="vDEF">https://www.nordicweldingexpo.fi/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="620cfb5e63913632927284"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">FABTECH</value> </field> <field index="fairDate"> <value index="vDEF">08.-10. November2022</value> </field> <field index="fairCity"> <value index="vDEF">Atlanta</value> </field> <field index="fairCountry"> <value index="vDEF">USA</value> </field> <field index="fairCompany"> <value index="vDEF">CRW</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2910</value> </field> <field index="link"> <value index="vDEF">https://www.fabtechexpo.com/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e8132f47269387954257"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">CIIE</value> </field> <field index="fairDate"> <value index="vDEF">05.-10. November 2022</value> </field> <field index="fairCity"> <value index="vDEF">Shanghai</value> </field> <field index="fairCountry"> <value index="vDEF">China</value> </field> <field index="fairCompany"> <value index="vDEF">Estun/CLOOS China</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3528</value> </field> <field index="link"> <value index="vDEF">https://www.ciie.org/zbh/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e812e94eb82718655921"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">1</value> </field> <field index="fairName"> <value index="vDEF">EuroBLECH</value> </field> <field index="fairDate"> <value index="vDEF">25.-28. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Hannover</value> </field> <field index="fairCountry"> <value index="vDEF">Deutschland</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Haiger</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2909</value> </field> <field index="link"> <value index="vDEF">https://www.euroblech.com/de-de.html</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e8126f33df2753472577"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">ExpoWelding</value> </field> <field index="fairDate"> <value index="vDEF">18.-20. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Sosnowiec</value> </field> <field index="fairCountry"> <value index="vDEF">Polen</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Polska</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3775</value> </field> <field index="link"> <value index="vDEF">https://www.expowelding.pl/2022/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e811d8c012a804506826"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">MSV</value> </field> <field index="fairDate"> <value index="vDEF">04.-07. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Brünn</value> </field> <field index="fairCountry"> <value index="vDEF">Tschechien</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Praha</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2894</value> </field> <field index="link"> <value index="vDEF">https://www.bvv.cz/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="6204d88ea094a397369170"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Robot Investment Fair</value> </field> <field index="fairDate"> <value index="vDEF">04.-06. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Istanbul</value> </field> <field index="fairCountry"> <value index="vDEF">Türkei</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Türkei</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=4607</value> </field> <field index="link"> <value index="vDEF">https://www.robotyatirimlari.com/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e8118b03865503066954"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">D2M</value> </field> <field index="fairDate"> <value index="vDEF">21.-22. September 2022</value> </field> <field index="fairCity"> <value index="vDEF">Kortrijk</value> </field> <field index="fairCountry"> <value index="vDEF">Niederlande</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Benelux</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6731</value> </field> <field index="link"> <value index="vDEF">https://www.d2m.be/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e811061af53347427532"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">1</value> </field> <field index="fairName"> <value index="vDEF">AUTOMATICA</value> </field> <field index="fairDate"> <value index="vDEF">21.-24. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">München</value> </field> <field index="fairCountry"> <value index="vDEF">Deutschland</value> </field> <field index="fairCompany"> <value index="vDEF">FerRobotics</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3820</value> </field> <field index="link"> <value index="vDEF">https://automatica-munich.com/de/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de91010f34f7368620788"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">Fabtech Show Mexico</value> </field> <field index="fairDate"> <value index="vDEF">03.-05. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Mexico City</value> </field> <field index="fairCountry"> <value index="vDEF">Mexico</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Mexico</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3780</value> </field> <field index="link"> <value index="vDEF">https://mexico.fabtechexpo.com/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80f92750c4988755151"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">WIN Eurasia</value> </field> <field index="fairDate"> <value index="vDEF">08.-11. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Istanbul</value> </field> <field index="fairCountry"> <value index="vDEF">Türkei</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Turkey</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2896</value> </field> <field index="link"> <value index="vDEF">http://www.win-eurasia.com/en/exhibition/about-win-eurasia</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80f1ac5942560684113"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">Beijing Essen Welding &amp; Cutting</value> </field> <field index="fairDate"> <value index="vDEF">07.-10. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Shenzhen</value> </field> <field index="fairCountry"> <value index="vDEF">China</value> </field> <field index="fairCompany"> <value index="vDEF">Estun / CLOOS China</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3224</value> </field> <field index="link"> <value index="vDEF">https://www.schweissen-schneiden.com/joining-cutting-surfacing/schweissen-schneiden-worldwide/bewc/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61af2d2555275657480164"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Journée du Métal</value> </field> <field index="fairDate"> <value index="vDEF">02. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Namur</value> </field> <field index="fairCountry"> <value index="vDEF">Belgien</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Benelux</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6690</value> </field> <field index="link"> <value index="vDEF">https://www.journeedumetal.be/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80ea2cc897961008969"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">ITM</value> </field> <field index="fairDate"> <value index="vDEF">31. Mai - 03. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Posen</value> </field> <field index="fairCountry"> <value index="vDEF">Polen</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Polska</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=4406</value> </field> <field index="link"> <value index="vDEF">https://itm-europe.pl/en</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61af2cccd6e2c210973415"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Lamiera</value> </field> <field index="fairDate"> <value index="vDEF">18.-21. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Mailand</value> </field> <field index="fairCountry"> <value index="vDEF">Italien</value> </field> <field index="fairCompany"> <value index="vDEF">Saldotecnica Busan</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2895</value> </field> <field index="link"> <value index="vDEF">https://www.lamiera.net/en/homepage-en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de9101806fa3768723089"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Metalshow</value> </field> <field index="fairDate"> <value index="vDEF">11.-14. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Bukarest</value> </field> <field index="fairCountry"> <value index="vDEF">Rumänien</value> </field> <field index="fairCompany"> <value index="vDEF">Robcon</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3771</value> </field> <field index="link"> <value index="vDEF">https://metalshow-tib.ro/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80a4075d96767851830"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">FIMAQH</value> </field> <field index="fairDate"> <value index="vDEF">10.-14. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Buenos Aires</value> </field> <field index="fairCountry"> <value index="vDEF">Argentinien</value> </field> <field index="fairCompany"> <value index="vDEF">ABD</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6730</value> </field> <field index="link"> <value index="vDEF">https://www.fimaqh.com/2022/en/inicio-2/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e809bf08e9f842808854"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">Konmak</value> </field> <field index="fairDate"> <value index="vDEF">10.-13. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Konya</value> </field> <field index="fairCountry"> <value index="vDEF">Türkei</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Turkey</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6733</value> </field> <field index="link"> <value index="vDEF">http://www.konmakfair.com/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de9100bb38ad590606796"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">FEIMEC</value> </field> <field index="fairDate"> <value index="vDEF">03.-07. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Sao Paulo</value> </field> <field index="fairCountry"> <value index="vDEF">Brasilien</value> </field> <field index="fairCompany"> <value index="vDEF">Tecsold</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3777</value> </field> <field index="link"> <value index="vDEF">https://www.feimec.com.br/en/HOME.html</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> </el> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 11252, 'l18n_diffsource' => 'a:26:{s:5:"CType";s:4:"list";s:6:"colPos";i:0;s:6:"header";s:13:"Messekalender";s:13:"header_layout";s:1:"0";s:15:"header_position";s:0:"";s:4:"date";i:0;s:11:"header_link";s:0:"";s:9:"subheader";s:0:"";s:9:"list_type";s:29:"schmelzermedientradefairs_pi1";s:5:"pages";s:4:"2159";s:9:"recursive";i:0;s:6:"layout";i:0;s:11:"frame_class";s:7:"default";s:18:"space_before_class";s:0:"";s:17:"space_after_class";s:0:"";s:12:"sectionIndex";i:1;s:9:"linkToTop";i:0;s:16:"sys_language_uid";i:0;s:6:"hidden";i:0;s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:8:"editlock";i:0;s:10:"categories";i:0;s:14:"rowDescription";N;s:11:"l18n_parent";i:0;}', 'zzz_deleted_tx_flux_column' => null, 'zzz_deleted_tx_flux_parent' => null, 'zzz_deleted_tx_flux_children' => null, 'zzz_deleted_tx_fed_fcefile' => '', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'tx_news_related_news' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 11252, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_flux_migrated_version' => null, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_slug' => '', 'tx_dce_new_container' => 0, '_LOCALIZED_UID' => 11294), 'typoscriptObjectPath' => 'tt_content.list.20.schmelzermedientradefairs_pi1', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/cloosl/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_list_b12d7b3c850ac05629505873d128c0aee77e5442.php line 72
$array5 = array (
);$arguments1['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array5);
$arguments1['table'] = 'tt_content';
$renderChildrenClosure2 = ($arguments1['data'] !== null) ? function() use ($arguments1) { return $arguments1['data']; } : $renderChildrenClosure2;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '

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

$output35 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments82, $renderChildrenClosure83, $renderingContext);

$output35 .= '
   ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_e699dedc62bd33851f1208756e1abfeb1fd549d0->{closure}()
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/cloosl/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_e699dedc62bd33851f1208756e1abfeb1fd549d0.php line 2145
  ';
return $output102;
};

$output32 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments33, $renderChildrenClosure34, $renderingContext);

$output32 .= '
';
return $output32;
at layout_Default_html_e699dedc62bd33851f1208756e1abfeb1fd549d0->{closure}()
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 55
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', $childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/cloosl/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_e699dedc62bd33851f1208756e1abfeb1fd549d0.php line 2153
return $output32;
};
$arguments30 = array();

$output29 .= TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic($arguments30, $renderChildrenClosure31, $renderingContext);

$output29 .= '

';
at layout_Default_html_e699dedc62bd33851f1208756e1abfeb1fd549d0->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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 /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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/', 'fileadmin/Resources/Private/Ext/fluidContent/Templates/', 'EXT:dce/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'fileadmin/Resources/Private/Ext/fluidContent/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'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'en', 'mail-body' => '', 'mail-subject' => '', 'mail-url' => 'mailto:', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => '', 'theme' => 'standard', 'twitter-via' => ''))), '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'), 'powermailcond_pi1' => 'USER', 'powermailcond_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'schmelzermedientradefairs_pi1' => 'USER', 'schmelzermedientradefairs_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), 'ccmediathek_mediathekplugin' => 'USER', 'ccmediathek_mediathekplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CcMediathek', 'pluginName' => 'Mediathekplugin'), 'cloospdfgenerator_pi1' => 'USER', 'cloospdfgenerator_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosPdfGenerator', 'pluginName' => 'Pi1'), 'cloosproducts_filterproducts' => 'USER', 'cloosproducts_filterproducts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts'), 'cloosproducts_filterproducts2' => 'USER', 'cloosproducts_filterproducts2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts2'), 'cloosproducts_showproduct' => 'USER', 'cloosproducts_showproduct.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Showproduct'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'oauth2client_manageproviders' => 'USER', 'oauth2client_manageproviders.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oauth2Client', 'pluginName' => 'ManageProviders'), 'oidc_pi1' => 'USER', 'oidc_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oidc', 'pluginName' => 'Pi1'), 'oidc_login' => '< plugin.tx_oidc_login')))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 828
        }

        // 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/', 'fileadmin/Resources/Private/Ext/fluidContent/Templates/', 'EXT:dce/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'fileadmin/Resources/Private/Ext/fluidContent/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'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'en', 'mail-body' => '', 'mail-subject' => '', 'mail-url' => 'mailto:', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => '', 'theme' => 'standard', 'twitter-via' => ''))), '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'), 'powermailcond_pi1' => 'USER', 'powermailcond_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'schmelzermedientradefairs_pi1' => 'USER', 'schmelzermedientradefairs_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), 'ccmediathek_mediathekplugin' => 'USER', 'ccmediathek_mediathekplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CcMediathek', 'pluginName' => 'Mediathekplugin'), 'cloospdfgenerator_pi1' => 'USER', 'cloospdfgenerator_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosPdfGenerator', 'pluginName' => 'Pi1'), 'cloosproducts_filterproducts' => 'USER', 'cloosproducts_filterproducts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts'), 'cloosproducts_filterproducts2' => 'USER', 'cloosproducts_filterproducts2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts2'), 'cloosproducts_showproduct' => 'USER', 'cloosproducts_showproduct.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Showproduct'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'oauth2client_manageproviders' => 'USER', 'oauth2client_manageproviders.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oauth2Client', 'pluginName' => 'ManageProviders'), 'oidc_pi1' => 'USER', 'oidc_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oidc', 'pluginName' => 'Pi1'), 'oidc_login' => '< plugin.tx_oidc_login')))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                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/', 'fileadmin/Resources/Private/Ext/fluidContent/Templates/', 'EXT:dce/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'fileadmin/Resources/Private/Ext/fluidContent/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'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'en', 'mail-body' => '', 'mail-subject' => '', 'mail-url' => 'mailto:', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => '', 'theme' => 'standard', 'twitter-via' => ''))), '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'), 'powermailcond_pi1' => 'USER', 'powermailcond_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'schmelzermedientradefairs_pi1' => 'USER', 'schmelzermedientradefairs_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), 'ccmediathek_mediathekplugin' => 'USER', 'ccmediathek_mediathekplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CcMediathek', 'pluginName' => 'Mediathekplugin'), 'cloospdfgenerator_pi1' => 'USER', 'cloospdfgenerator_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosPdfGenerator', 'pluginName' => 'Pi1'), 'cloosproducts_filterproducts' => 'USER', 'cloosproducts_filterproducts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts'), 'cloosproducts_filterproducts2' => 'USER', 'cloosproducts_filterproducts2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts2'), 'cloosproducts_showproduct' => 'USER', 'cloosproducts_showproduct.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Showproduct'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'oauth2client_manageproviders' => 'USER', 'oauth2client_manageproviders.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oauth2Client', 'pluginName' => 'ManageProviders'), 'oidc_pi1' => 'USER', 'oidc_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oidc', 'pluginName' => 'Pi1'), 'oidc_login' => '< plugin.tx_oidc_login')), 'lib.contentElement')
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 723
                [$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/', 'fileadmin/Resources/Private/Ext/fluidContent/Templates/', 'EXT:dce/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'fileadmin/Resources/Private/Ext/fluidContent/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'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'en', 'mail-body' => '', 'mail-subject' => '', 'mail-url' => 'mailto:', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => '', 'theme' => 'standard', 'twitter-via' => ''))), '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'), 'powermailcond_pi1' => 'USER', 'powermailcond_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'schmelzermedientradefairs_pi1' => 'USER', 'schmelzermedientradefairs_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), 'ccmediathek_mediathekplugin' => 'USER', 'ccmediathek_mediathekplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CcMediathek', 'pluginName' => 'Mediathekplugin'), 'cloospdfgenerator_pi1' => 'USER', 'cloospdfgenerator_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosPdfGenerator', 'pluginName' => 'Pi1'), 'cloosproducts_filterproducts' => 'USER', 'cloosproducts_filterproducts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts'), 'cloosproducts_filterproducts2' => 'USER', 'cloosproducts_filterproducts2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts2'), 'cloosproducts_showproduct' => 'USER', 'cloosproducts_showproduct.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Showproduct'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'oauth2client_manageproviders' => 'USER', 'oauth2client_manageproviders.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oauth2Client', 'pluginName' => 'ManageProviders'), 'oidc_pi1' => 'USER', 'oidc_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oidc', 'pluginName' => 'Pi1'), 'oidc_login' => '< plugin.tx_oidc_login')), 'list')
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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')), 'clooscontent_accordion.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Accordion'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contactlist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contactlist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contactnavigation.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contactnavigation'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentimage.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentimage'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentimageslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentimageslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_downloadbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Downloadbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_fairbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Fairbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_fairlist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Fairlist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_hometeaser.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Hometeaser'), 'templateName' => 'Generic', 'USER'), 'clooscontent_hometeaserblock.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Hometeaserblock'), 'templateName' => 'Generic', 'USER'), 'clooscontent_htmlbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Htmlbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_imagewithtext.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Imagewithtext'), 'templateName' => 'Generic', 'USER'), 'clooscontent_infobox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Infobox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_infobox2.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Infobox2'), 'templateName' => 'Generic', 'USER'), 'clooscontent_mapdatalist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Mapdatalist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_overviewgrid.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Overviewgrid'), 'templateName' => 'Generic', 'USER'), 'clooscontent_popupslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Popupslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_processfilter.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Processfilter'), 'templateName' => 'Generic', 'USER'), 'clooscontent_processoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Processoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_sidebarnavigation.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Sidebarnavigation'), 'templateName' => 'Generic', 'USER'), 'clooscontent_speciallist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Speciallist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_tabs.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Tabs'), 'templateName' => 'Generic', 'USER'), 'clooscontent_teaserimage.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Teaserimage'), 'templateName' => 'Generic', 'USER'), 'clooscontent_teaserslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Teaserslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_trainingdetaillist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Trainingdetaillist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_trainingoverviewgrid.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Trainingoverviewgrid'), 'templateName' => 'Generic', 'USER'), 'clooscontent_welltext.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Welltext'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubefilter.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubefilter'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubeoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubeoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubeplayer.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubeplayer'), 'templateName' => 'Generic', 'USER'), 'shortcut.' => array('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')))), 'variables.' => array('shortcuts.' => array('tables' => 'tt_content', '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'))), 'source.' => array('field' => 'records')), 'shortcuts' => 'RECORDS'), 'templateName' => 'Shortcut', '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')))), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html'))), 'parseFunc.' => array('tags.' => array())), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'en', 'mail-body' => '', 'mail-subject' => '', 'mail-url' => 'mailto:', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => '', 'theme' => 'standard', 'twitter-via' => ''))), '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'), 'powermailcond_pi1' => 'USER', 'powermailcond_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'schmelzermedientradefairs_pi1' => 'USER', 'schmelzermedientradefairs_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), 'ccmediathek_mediathekplugin' => 'USER', 'ccmediathek_mediathekplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CcMediathek', 'pluginName' => 'Mediathekplugin'), 'cloospdfgenerator_pi1' => 'USER', 'cloospdfgenerator_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosPdfGenerator', 'pluginName' => 'Pi1'), 'cloosproducts_filterproducts' => 'USER', 'cloosproducts_filterproducts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts'), 'cloosproducts_filterproducts2' => 'USER', 'cloosproducts_filterproducts2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts2'), 'cloosproducts_showproduct' => 'USER', 'cloosproducts_showproduct.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Showproduct'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'oauth2client_manageproviders' => 'USER', 'oauth2client_manageproviders.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oauth2Client', 'pluginName' => 'ManageProviders'), 'oidc_pi1' => 'USER', 'oidc_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oidc', 'pluginName' => 'Pi1'), 'oidc_login' => '< plugin.tx_oidc_login')), 'shortcut' => '< lib.contentElement', 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html'))), '20.' => array('parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array())))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'clooscontent_accordion' => '< lib.contentElement', 'clooscontent_contactlist' => '< lib.contentElement', 'clooscontent_contactnavigation' => '< lib.contentElement', 'clooscontent_contentimage' => '< lib.contentElement', 'clooscontent_contentimageslider' => '< lib.contentElement', 'clooscontent_contentoverview' => '< lib.contentElement', 'clooscontent_downloadbox' => '< lib.contentElement', 'clooscontent_fairbox' => '< lib.contentElement', 'clooscontent_fairlist' => '< lib.contentElement', 'clooscontent_hometeaser' => '< lib.contentElement', 'clooscontent_hometeaserblock' => '< lib.contentElement', 'clooscontent_htmlbox' => '< lib.contentElement', 'clooscontent_imagewithtext' => '< lib.contentElement', 'clooscontent_infobox' => '< lib.contentElement', 'clooscontent_infobox2' => '< lib.contentElement', 'clooscontent_mapdatalist' => '< lib.contentElement', 'clooscontent_overviewgrid' => '< lib.contentElement', 'clooscontent_popupslider' => '< lib.contentElement', 'clooscontent_processfilter' => '< lib.contentElement', 'clooscontent_processoverview' => '< lib.contentElement', 'clooscontent_sidebarnavigation' => '< lib.contentElement', 'clooscontent_speciallist' => '< lib.contentElement', 'clooscontent_tabs' => '< lib.contentElement', 'clooscontent_teaserimage' => '< lib.contentElement', 'clooscontent_teaserslider' => '< lib.contentElement', 'clooscontent_trainingdetaillist' => '< lib.contentElement', 'clooscontent_trainingoverviewgrid' => '< lib.contentElement', 'clooscontent_welltext' => '< lib.contentElement', 'clooscontent_youtubefilter' => '< lib.contentElement', 'clooscontent_youtubeoverview' => '< lib.contentElement', 'clooscontent_youtubeplayer' => '< lib.contentElement'))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 828
        }

        // 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')), 'clooscontent_accordion.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Accordion'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contactlist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contactlist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contactnavigation.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contactnavigation'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentimage.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentimage'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentimageslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentimageslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_downloadbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Downloadbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_fairbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Fairbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_fairlist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Fairlist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_hometeaser.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Hometeaser'), 'templateName' => 'Generic', 'USER'), 'clooscontent_hometeaserblock.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Hometeaserblock'), 'templateName' => 'Generic', 'USER'), 'clooscontent_htmlbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Htmlbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_imagewithtext.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Imagewithtext'), 'templateName' => 'Generic', 'USER'), 'clooscontent_infobox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Infobox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_infobox2.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Infobox2'), 'templateName' => 'Generic', 'USER'), 'clooscontent_mapdatalist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Mapdatalist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_overviewgrid.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Overviewgrid'), 'templateName' => 'Generic', 'USER'), 'clooscontent_popupslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Popupslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_processfilter.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Processfilter'), 'templateName' => 'Generic', 'USER'), 'clooscontent_processoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Processoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_sidebarnavigation.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Sidebarnavigation'), 'templateName' => 'Generic', 'USER'), 'clooscontent_speciallist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Speciallist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_tabs.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Tabs'), 'templateName' => 'Generic', 'USER'), 'clooscontent_teaserimage.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Teaserimage'), 'templateName' => 'Generic', 'USER'), 'clooscontent_teaserslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Teaserslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_trainingdetaillist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Trainingdetaillist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_trainingoverviewgrid.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Trainingoverviewgrid'), 'templateName' => 'Generic', 'USER'), 'clooscontent_welltext.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Welltext'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubefilter.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubefilter'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubeoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubeoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubeplayer.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubeplayer'), 'templateName' => 'Generic', 'USER'), 'shortcut.' => array('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')))), 'variables.' => array('shortcuts.' => array('tables' => 'tt_content', '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'))), 'source.' => array('field' => 'records')), 'shortcuts' => 'RECORDS'), 'templateName' => 'Shortcut', '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')))), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html'))), 'parseFunc.' => array('tags.' => array())), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'en', 'mail-body' => '', 'mail-subject' => '', 'mail-url' => 'mailto:', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => '', 'theme' => 'standard', 'twitter-via' => ''))), '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'), 'powermailcond_pi1' => 'USER', 'powermailcond_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'schmelzermedientradefairs_pi1' => 'USER', 'schmelzermedientradefairs_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), 'ccmediathek_mediathekplugin' => 'USER', 'ccmediathek_mediathekplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CcMediathek', 'pluginName' => 'Mediathekplugin'), 'cloospdfgenerator_pi1' => 'USER', 'cloospdfgenerator_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosPdfGenerator', 'pluginName' => 'Pi1'), 'cloosproducts_filterproducts' => 'USER', 'cloosproducts_filterproducts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts'), 'cloosproducts_filterproducts2' => 'USER', 'cloosproducts_filterproducts2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts2'), 'cloosproducts_showproduct' => 'USER', 'cloosproducts_showproduct.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Showproduct'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'oauth2client_manageproviders' => 'USER', 'oauth2client_manageproviders.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oauth2Client', 'pluginName' => 'ManageProviders'), 'oidc_pi1' => 'USER', 'oidc_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oidc', 'pluginName' => 'Pi1'), 'oidc_login' => '< plugin.tx_oidc_login')), 'shortcut' => '< lib.contentElement', 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html'))), '20.' => array('parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array())))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'clooscontent_accordion' => '< lib.contentElement', 'clooscontent_contactlist' => '< lib.contentElement', 'clooscontent_contactnavigation' => '< lib.contentElement', 'clooscontent_contentimage' => '< lib.contentElement', 'clooscontent_contentimageslider' => '< lib.contentElement', 'clooscontent_contentoverview' => '< lib.contentElement', 'clooscontent_downloadbox' => '< lib.contentElement', 'clooscontent_fairbox' => '< lib.contentElement', 'clooscontent_fairlist' => '< lib.contentElement', 'clooscontent_hometeaser' => '< lib.contentElement', 'clooscontent_hometeaserblock' => '< lib.contentElement', 'clooscontent_htmlbox' => '< lib.contentElement', 'clooscontent_imagewithtext' => '< lib.contentElement', 'clooscontent_infobox' => '< lib.contentElement', 'clooscontent_infobox2' => '< lib.contentElement', 'clooscontent_mapdatalist' => '< lib.contentElement', 'clooscontent_overviewgrid' => '< lib.contentElement', 'clooscontent_popupslider' => '< lib.contentElement', 'clooscontent_processfilter' => '< lib.contentElement', 'clooscontent_processoverview' => '< lib.contentElement', 'clooscontent_sidebarnavigation' => '< lib.contentElement', 'clooscontent_speciallist' => '< lib.contentElement', 'clooscontent_tabs' => '< lib.contentElement', 'clooscontent_teaserimage' => '< lib.contentElement', 'clooscontent_teaserslider' => '< lib.contentElement', 'clooscontent_trainingdetaillist' => '< lib.contentElement', 'clooscontent_trainingoverviewgrid' => '< lib.contentElement', 'clooscontent_welltext' => '< lib.contentElement', 'clooscontent_youtubefilter' => '< lib.contentElement', 'clooscontent_youtubeoverview' => '< lib.contentElement', 'clooscontent_youtubeplayer' => '< lib.contentElement'))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                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')), 'clooscontent_accordion.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Accordion'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contactlist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contactlist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contactnavigation.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contactnavigation'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentimage.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentimage'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentimageslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentimageslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_downloadbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Downloadbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_fairbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Fairbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_fairlist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Fairlist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_hometeaser.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Hometeaser'), 'templateName' => 'Generic', 'USER'), 'clooscontent_hometeaserblock.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Hometeaserblock'), 'templateName' => 'Generic', 'USER'), 'clooscontent_htmlbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Htmlbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_imagewithtext.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Imagewithtext'), 'templateName' => 'Generic', 'USER'), 'clooscontent_infobox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Infobox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_infobox2.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Infobox2'), 'templateName' => 'Generic', 'USER'), 'clooscontent_mapdatalist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Mapdatalist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_overviewgrid.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Overviewgrid'), 'templateName' => 'Generic', 'USER'), 'clooscontent_popupslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Popupslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_processfilter.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Processfilter'), 'templateName' => 'Generic', 'USER'), 'clooscontent_processoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Processoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_sidebarnavigation.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Sidebarnavigation'), 'templateName' => 'Generic', 'USER'), 'clooscontent_speciallist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Speciallist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_tabs.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Tabs'), 'templateName' => 'Generic', 'USER'), 'clooscontent_teaserimage.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Teaserimage'), 'templateName' => 'Generic', 'USER'), 'clooscontent_teaserslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Teaserslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_trainingdetaillist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Trainingdetaillist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_trainingoverviewgrid.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Trainingoverviewgrid'), 'templateName' => 'Generic', 'USER'), 'clooscontent_welltext.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Welltext'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubefilter.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubefilter'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubeoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubeoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubeplayer.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubeplayer'), 'templateName' => 'Generic', 'USER'), 'shortcut.' => array('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')))), 'variables.' => array('shortcuts.' => array('tables' => 'tt_content', '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'))), 'source.' => array('field' => 'records')), 'shortcuts' => 'RECORDS'), 'templateName' => 'Shortcut', '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')))), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html'))), 'parseFunc.' => array('tags.' => array())), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'en', 'mail-body' => '', 'mail-subject' => '', 'mail-url' => 'mailto:', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => '', 'theme' => 'standard', 'twitter-via' => ''))), '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'), 'powermailcond_pi1' => 'USER', 'powermailcond_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'schmelzermedientradefairs_pi1' => 'USER', 'schmelzermedientradefairs_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), 'ccmediathek_mediathekplugin' => 'USER', 'ccmediathek_mediathekplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CcMediathek', 'pluginName' => 'Mediathekplugin'), 'cloospdfgenerator_pi1' => 'USER', 'cloospdfgenerator_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosPdfGenerator', 'pluginName' => 'Pi1'), 'cloosproducts_filterproducts' => 'USER', 'cloosproducts_filterproducts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts'), 'cloosproducts_filterproducts2' => 'USER', 'cloosproducts_filterproducts2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts2'), 'cloosproducts_showproduct' => 'USER', 'cloosproducts_showproduct.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Showproduct'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'oauth2client_manageproviders' => 'USER', 'oauth2client_manageproviders.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oauth2Client', 'pluginName' => 'ManageProviders'), 'oidc_pi1' => 'USER', 'oidc_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oidc', 'pluginName' => 'Pi1'), 'oidc_login' => '< plugin.tx_oidc_login')), 'shortcut' => '< lib.contentElement', 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html'))), '20.' => array('parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array())))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'clooscontent_accordion' => '< lib.contentElement', 'clooscontent_contactlist' => '< lib.contentElement', 'clooscontent_contactnavigation' => '< lib.contentElement', 'clooscontent_contentimage' => '< lib.contentElement', 'clooscontent_contentimageslider' => '< lib.contentElement', 'clooscontent_contentoverview' => '< lib.contentElement', 'clooscontent_downloadbox' => '< lib.contentElement', 'clooscontent_fairbox' => '< lib.contentElement', 'clooscontent_fairlist' => '< lib.contentElement', 'clooscontent_hometeaser' => '< lib.contentElement', 'clooscontent_hometeaserblock' => '< lib.contentElement', 'clooscontent_htmlbox' => '< lib.contentElement', 'clooscontent_imagewithtext' => '< lib.contentElement', 'clooscontent_infobox' => '< lib.contentElement', 'clooscontent_infobox2' => '< lib.contentElement', 'clooscontent_mapdatalist' => '< lib.contentElement', 'clooscontent_overviewgrid' => '< lib.contentElement', 'clooscontent_popupslider' => '< lib.contentElement', 'clooscontent_processfilter' => '< lib.contentElement', 'clooscontent_processoverview' => '< lib.contentElement', 'clooscontent_sidebarnavigation' => '< lib.contentElement', 'clooscontent_speciallist' => '< lib.contentElement', 'clooscontent_tabs' => '< lib.contentElement', 'clooscontent_teaserimage' => '< lib.contentElement', 'clooscontent_teaserslider' => '< lib.contentElement', 'clooscontent_trainingdetaillist' => '< lib.contentElement', 'clooscontent_trainingoverviewgrid' => '< lib.contentElement', 'clooscontent_welltext' => '< lib.contentElement', 'clooscontent_youtubefilter' => '< lib.contentElement', 'clooscontent_youtubeoverview' => '< lib.contentElement', 'clooscontent_youtubeplayer' => '< lib.contentElement'), 'tt_content')
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 723
                [$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')), 'clooscontent_accordion.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Accordion'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contactlist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contactlist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contactnavigation.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contactnavigation'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentimage.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentimage'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentimageslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentimageslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_contentoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Contentoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_downloadbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Downloadbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_fairbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Fairbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_fairlist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Fairlist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_hometeaser.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Hometeaser'), 'templateName' => 'Generic', 'USER'), 'clooscontent_hometeaserblock.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Hometeaserblock'), 'templateName' => 'Generic', 'USER'), 'clooscontent_htmlbox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Htmlbox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_imagewithtext.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Imagewithtext'), 'templateName' => 'Generic', 'USER'), 'clooscontent_infobox.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Infobox'), 'templateName' => 'Generic', 'USER'), 'clooscontent_infobox2.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Infobox2'), 'templateName' => 'Generic', 'USER'), 'clooscontent_mapdatalist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Mapdatalist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_overviewgrid.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Overviewgrid'), 'templateName' => 'Generic', 'USER'), 'clooscontent_popupslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Popupslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_processfilter.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Processfilter'), 'templateName' => 'Generic', 'USER'), 'clooscontent_processoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Processoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_sidebarnavigation.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Sidebarnavigation'), 'templateName' => 'Generic', 'USER'), 'clooscontent_speciallist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Speciallist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_tabs.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Tabs'), 'templateName' => 'Generic', 'USER'), 'clooscontent_teaserimage.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Teaserimage'), 'templateName' => 'Generic', 'USER'), 'clooscontent_teaserslider.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Teaserslider'), 'templateName' => 'Generic', 'USER'), 'clooscontent_trainingdetaillist.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Trainingdetaillist'), 'templateName' => 'Generic', 'USER'), 'clooscontent_trainingoverviewgrid.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Trainingoverviewgrid'), 'templateName' => 'Generic', 'USER'), 'clooscontent_welltext.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Welltext'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubefilter.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubefilter'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubeoverview.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubeoverview'), 'templateName' => 'Generic', 'USER'), 'clooscontent_youtubeplayer.' => array('20.' => array('vendorName' => 'CLOOS', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Clooscontent', 'pluginName' => 'Youtubeplayer'), 'templateName' => 'Generic', 'USER'), 'shortcut.' => array('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')))), 'variables.' => array('shortcuts.' => array('tables' => 'tt_content', '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'))), 'source.' => array('field' => 'records')), 'shortcuts' => 'RECORDS'), 'templateName' => 'Shortcut', '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')))), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html'))), 'parseFunc.' => array('tags.' => array())), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'en', 'mail-body' => '', 'mail-subject' => '', 'mail-url' => 'mailto:', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => '', 'theme' => 'standard', 'twitter-via' => ''))), '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'), 'powermailcond_pi1' => 'USER', 'powermailcond_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'schmelzermedientradefairs_pi1' => 'USER', 'schmelzermedientradefairs_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SchmelzermedienTradefairs', 'pluginName' => 'Pi1'), 'ccmediathek_mediathekplugin' => 'USER', 'ccmediathek_mediathekplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CcMediathek', 'pluginName' => 'Mediathekplugin'), 'cloospdfgenerator_pi1' => 'USER', 'cloospdfgenerator_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosPdfGenerator', 'pluginName' => 'Pi1'), 'cloosproducts_filterproducts' => 'USER', 'cloosproducts_filterproducts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts'), 'cloosproducts_filterproducts2' => 'USER', 'cloosproducts_filterproducts2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Filterproducts2'), 'cloosproducts_showproduct' => 'USER', 'cloosproducts_showproduct.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'CloosProducts', 'pluginName' => 'Showproduct'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'oauth2client_manageproviders' => 'USER', 'oauth2client_manageproviders.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oauth2Client', 'pluginName' => 'ManageProviders'), 'oidc_pi1' => 'USER', 'oidc_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Oidc', 'pluginName' => 'Pi1'), 'oidc_login' => '< plugin.tx_oidc_login')), 'shortcut' => '< lib.contentElement', 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html'))), '20.' => array('parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array())))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'clooscontent_accordion' => '< lib.contentElement', 'clooscontent_contactlist' => '< lib.contentElement', 'clooscontent_contactnavigation' => '< lib.contentElement', 'clooscontent_contentimage' => '< lib.contentElement', 'clooscontent_contentimageslider' => '< lib.contentElement', 'clooscontent_contentoverview' => '< lib.contentElement', 'clooscontent_downloadbox' => '< lib.contentElement', 'clooscontent_fairbox' => '< lib.contentElement', 'clooscontent_fairlist' => '< lib.contentElement', 'clooscontent_hometeaser' => '< lib.contentElement', 'clooscontent_hometeaserblock' => '< lib.contentElement', 'clooscontent_htmlbox' => '< lib.contentElement', 'clooscontent_imagewithtext' => '< lib.contentElement', 'clooscontent_infobox' => '< lib.contentElement', 'clooscontent_infobox2' => '< lib.contentElement', 'clooscontent_mapdatalist' => '< lib.contentElement', 'clooscontent_overviewgrid' => '< lib.contentElement', 'clooscontent_popupslider' => '< lib.contentElement', 'clooscontent_processfilter' => '< lib.contentElement', 'clooscontent_processoverview' => '< lib.contentElement', 'clooscontent_sidebarnavigation' => '< lib.contentElement', 'clooscontent_speciallist' => '< lib.contentElement', 'clooscontent_tabs' => '< lib.contentElement', 'clooscontent_teaserimage' => '< lib.contentElement', 'clooscontent_teaserslider' => '< lib.contentElement', 'clooscontent_trainingdetaillist' => '< lib.contentElement', 'clooscontent_trainingoverviewgrid' => '< lib.contentElement', 'clooscontent_welltext' => '< lib.contentElement', 'clooscontent_youtubefilter' => '< lib.contentElement', 'clooscontent_youtubeoverview' => '< lib.contentElement', 'clooscontent_youtubeplayer' => '< lib.contentElement'), '')
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/RecordsContentObject.php line 119
                            $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                            $GLOBALS['TSFE']->currentRecord = $val['table'] . ':' . $val['id'];
                            $this->cObj->lastChanged($row['tstamp']);
                            $cObj->start($row, $val['table']);
                            $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                            $theValue .= $tmpValue;
                        }
                    }
                }
at TYPO3\CMS\Frontend\ContentObject\RecordsContentObject->render(array('tables' => 'tt_content', 'source' => 11252, 'dontCheckPid' => 1))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 828
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\RecordsContentObject), array('tables' => 'tt_content', 'source' => 11252, 'dontCheckPid' => 1))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('RECORDS', array('tables' => 'tt_content', 'source' => 11252, 'dontCheckPid' => 1))
in /usr/www/users/cloosl/httpdocs/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 236
        // It's should not be allowed to do this again then!!
        if (false === empty($parent)) {
            ++$GLOBALS['TSFE']->recordRegister[$parent];
        }
        $html = $GLOBALS['TSFE']->cObj->cObjGetSingle('RECORDS', $conf);

        $GLOBALS['TSFE']->currentRecord = $parent;
        if (false === empty($parent)) {
            --$GLOBALS['TSFE']->recordRegister[$parent];
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper::renderRecord(array('uid' => 11252, 'pid' => 2160, 't3ver_oid' => 0, 'zzz_deleted_t3ver_id' => 0, 't3ver_wsid' => 0, 'zzz_deleted_t3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 11252, 'tstamp' => 1657262012, 'crdate' => 1657262000, 'cruser_id' => 26, 'hidden' => 0, 'sorting' => 1539, 'CType' => 'list', 'header' => 'Veletržní kalendář', 'header_position' => '', 'bodytext' => '', 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'zzz_deleted_imagecaption' => null, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '2159', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'zzz_deleted_spaceBefore' => 0, 'zzz_deleted_spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'zzz_deleted_imagecaption_position' => '', 'zzz_deleted_image_link' => null, 'image_zoom' => 0, 'zzz_deleted_image_noRows' => 0, 'zzz_deleted_image_effects' => 0, 'zzz_deleted_image_compression' => 0, 'zzz_deleted_altText' => null, 'zzz_deleted_titleText' => null, 'zzz_deleted_longdescURL' => null, 'header_layout' => '0', 'zzz_deleted_text_align' => '', 'zzz_deleted_text_face' => 0, 'zzz_deleted_text_size' => 0, 'zzz_deleted_text_color' => 0, 'zzz_deleted_text_properties' => 0, 'zzz_deleted_menu_type' => '0', 'list_type' => 'schmelzermedientradefairs_pi1', 'zzz_deleted_table_border' => 0, 'zzz_deleted_table_cellspacing' => 0, 'zzz_deleted_table_cellpadding' => 0, 'zzz_deleted_table_bgColor' => 0, 'zzz_deleted_select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'zzz_deleted_section_frame' => 0, 'date' => 0, 'zzz_deleted_multimedia' => null, 'zzz_deleted_image_frames' => 0, 'recursive' => 0, 'imageheight' => 0, 'zzz_deleted_rte_enabled' => 0, 'sys_language_uid' => 4, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lZH"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lNL"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lEN"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lFR"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lCS"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="options"> <language index="lDEF"> <field index="categoryTitles"> <value index="vDEF">Alle,Deutschland,Europa,Weltweit</value> </field> <field index="listElements"> <el index="el"> <field index="61e80939a2e5d892026183"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">STOM</value> </field> <field index="fairDate"> <value index="vDEF">05.-07. April 2022</value> </field> <field index="fairCity"> <value index="vDEF">Kielce</value> </field> <field index="fairCountry"> <value index="vDEF">Polen</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Polska</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3779</value> </field> <field index="link"> <value index="vDEF">https://www.targikielce.pl/en/stom</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de90fd157a8a437094097"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">TechniShow</value> </field> <field index="fairDate"> <value index="vDEF">30. August - 02. September 2022</value> </field> <field index="fairCity"> <value index="vDEF">Utrecht</value> </field> <field index="fairCountry"> <value index="vDEF">Niederlande</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Benelux</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3770</value> </field> <field index="link"> <value index="vDEF">https://www.technishow.nl/exposeren/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5fcf70aa96123973211211"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">1</value> </field> <field index="fairName"> <value index="vDEF">SCHWEISSEN &amp; SCHNEIDEN</value> </field> <field index="fairDate"> <value index="vDEF">11.-15. September 2023</value> </field> <field index="fairCity"> <value index="vDEF">Essen</value> </field> <field index="fairCountry"> <value index="vDEF">Deutschland</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Haiger</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2891</value> </field> <field index="link"> <value index="vDEF">https://www.schweissen-schneiden.com/fuegen-trennen-beschichten/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e808b1cb8cb582691614"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Nordic Welding Expo</value> </field> <field index="fairDate"> <value index="vDEF">29. November - 01. Dezember 2022</value> </field> <field index="fairCity"> <value index="vDEF">Tampere</value> </field> <field index="fairCountry"> <value index="vDEF">Finnland</value> </field> <field index="fairCompany"> <value index="vDEF">Meuro Tech</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3931</value> </field> <field index="link"> <value index="vDEF">https://www.nordicweldingexpo.fi/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="620cfb5e63913632927284"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">FABTECH</value> </field> <field index="fairDate"> <value index="vDEF">08.-10. November2022</value> </field> <field index="fairCity"> <value index="vDEF">Atlanta</value> </field> <field index="fairCountry"> <value index="vDEF">USA</value> </field> <field index="fairCompany"> <value index="vDEF">CRW</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2910</value> </field> <field index="link"> <value index="vDEF">https://www.fabtechexpo.com/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e8132f47269387954257"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">CIIE</value> </field> <field index="fairDate"> <value index="vDEF">05.-10. November 2022</value> </field> <field index="fairCity"> <value index="vDEF">Shanghai</value> </field> <field index="fairCountry"> <value index="vDEF">China</value> </field> <field index="fairCompany"> <value index="vDEF">Estun/CLOOS China</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3528</value> </field> <field index="link"> <value index="vDEF">https://www.ciie.org/zbh/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e812e94eb82718655921"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">1</value> </field> <field index="fairName"> <value index="vDEF">EuroBLECH</value> </field> <field index="fairDate"> <value index="vDEF">25.-28. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Hannover</value> </field> <field index="fairCountry"> <value index="vDEF">Deutschland</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Haiger</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2909</value> </field> <field index="link"> <value index="vDEF">https://www.euroblech.com/de-de.html</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e8126f33df2753472577"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">ExpoWelding</value> </field> <field index="fairDate"> <value index="vDEF">18.-20. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Sosnowiec</value> </field> <field index="fairCountry"> <value index="vDEF">Polen</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Polska</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3775</value> </field> <field index="link"> <value index="vDEF">https://www.expowelding.pl/2022/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e811d8c012a804506826"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">MSV</value> </field> <field index="fairDate"> <value index="vDEF">04.-07. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Brünn</value> </field> <field index="fairCountry"> <value index="vDEF">Tschechien</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Praha</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2894</value> </field> <field index="link"> <value index="vDEF">https://www.bvv.cz/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="6204d88ea094a397369170"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Robot Investment Fair</value> </field> <field index="fairDate"> <value index="vDEF">04.-06. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Istanbul</value> </field> <field index="fairCountry"> <value index="vDEF">Türkei</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Türkei</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=4607</value> </field> <field index="link"> <value index="vDEF">https://www.robotyatirimlari.com/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e8118b03865503066954"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">D2M</value> </field> <field index="fairDate"> <value index="vDEF">21.-22. September 2022</value> </field> <field index="fairCity"> <value index="vDEF">Kortrijk</value> </field> <field index="fairCountry"> <value index="vDEF">Niederlande</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Benelux</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6731</value> </field> <field index="link"> <value index="vDEF">https://www.d2m.be/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e811061af53347427532"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">1</value> </field> <field index="fairName"> <value index="vDEF">AUTOMATICA</value> </field> <field index="fairDate"> <value index="vDEF">21.-24. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">München</value> </field> <field index="fairCountry"> <value index="vDEF">Deutschland</value> </field> <field index="fairCompany"> <value index="vDEF">FerRobotics</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3820</value> </field> <field index="link"> <value index="vDEF">https://automatica-munich.com/de/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de91010f34f7368620788"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">Fabtech Show Mexico</value> </field> <field index="fairDate"> <value index="vDEF">03.-05. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Mexico City</value> </field> <field index="fairCountry"> <value index="vDEF">Mexico</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Mexico</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3780</value> </field> <field index="link"> <value index="vDEF">https://mexico.fabtechexpo.com/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80f92750c4988755151"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">WIN Eurasia</value> </field> <field index="fairDate"> <value index="vDEF">08.-11. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Istanbul</value> </field> <field index="fairCountry"> <value index="vDEF">Türkei</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Turkey</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2896</value> </field> <field index="link"> <value index="vDEF">http://www.win-eurasia.com/en/exhibition/about-win-eurasia</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80f1ac5942560684113"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">Beijing Essen Welding &amp; Cutting</value> </field> <field index="fairDate"> <value index="vDEF">07.-10. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Shenzhen</value> </field> <field index="fairCountry"> <value index="vDEF">China</value> </field> <field index="fairCompany"> <value index="vDEF">Estun / CLOOS China</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3224</value> </field> <field index="link"> <value index="vDEF">https://www.schweissen-schneiden.com/joining-cutting-surfacing/schweissen-schneiden-worldwide/bewc/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61af2d2555275657480164"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Journée du Métal</value> </field> <field index="fairDate"> <value index="vDEF">02. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Namur</value> </field> <field index="fairCountry"> <value index="vDEF">Belgien</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Benelux</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6690</value> </field> <field index="link"> <value index="vDEF">https://www.journeedumetal.be/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80ea2cc897961008969"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">ITM</value> </field> <field index="fairDate"> <value index="vDEF">31. Mai - 03. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Posen</value> </field> <field index="fairCountry"> <value index="vDEF">Polen</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Polska</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=4406</value> </field> <field index="link"> <value index="vDEF">https://itm-europe.pl/en</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61af2cccd6e2c210973415"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Lamiera</value> </field> <field index="fairDate"> <value index="vDEF">18.-21. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Mailand</value> </field> <field index="fairCountry"> <value index="vDEF">Italien</value> </field> <field index="fairCompany"> <value index="vDEF">Saldotecnica Busan</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2895</value> </field> <field index="link"> <value index="vDEF">https://www.lamiera.net/en/homepage-en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de9101806fa3768723089"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Metalshow</value> </field> <field index="fairDate"> <value index="vDEF">11.-14. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Bukarest</value> </field> <field index="fairCountry"> <value index="vDEF">Rumänien</value> </field> <field index="fairCompany"> <value index="vDEF">Robcon</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3771</value> </field> <field index="link"> <value index="vDEF">https://metalshow-tib.ro/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80a4075d96767851830"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">FIMAQH</value> </field> <field index="fairDate"> <value index="vDEF">10.-14. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Buenos Aires</value> </field> <field index="fairCountry"> <value index="vDEF">Argentinien</value> </field> <field index="fairCompany"> <value index="vDEF">ABD</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6730</value> </field> <field index="link"> <value index="vDEF">https://www.fimaqh.com/2022/en/inicio-2/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e809bf08e9f842808854"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">Konmak</value> </field> <field index="fairDate"> <value index="vDEF">10.-13. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Konya</value> </field> <field index="fairCountry"> <value index="vDEF">Türkei</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Turkey</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6733</value> </field> <field index="link"> <value index="vDEF">http://www.konmakfair.com/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de9100bb38ad590606796"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">FEIMEC</value> </field> <field index="fairDate"> <value index="vDEF">03.-07. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Sao Paulo</value> </field> <field index="fairCountry"> <value index="vDEF">Brasilien</value> </field> <field index="fairCompany"> <value index="vDEF">Tecsold</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3777</value> </field> <field index="link"> <value index="vDEF">https://www.feimec.com.br/en/HOME.html</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> </el> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 11252, 'l18n_diffsource' => 'a:26:{s:5:"CType";s:4:"list";s:6:"colPos";i:0;s:6:"header";s:13:"Messekalender";s:13:"header_layout";s:1:"0";s:15:"header_position";s:0:"";s:4:"date";i:0;s:11:"header_link";s:0:"";s:9:"subheader";s:0:"";s:9:"list_type";s:29:"schmelzermedientradefairs_pi1";s:5:"pages";s:4:"2159";s:9:"recursive";i:0;s:6:"layout";i:0;s:11:"frame_class";s:7:"default";s:18:"space_before_class";s:0:"";s:17:"space_after_class";s:0:"";s:12:"sectionIndex";i:1;s:9:"linkToTop";i:0;s:16:"sys_language_uid";i:0;s:6:"hidden";i:0;s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:8:"editlock";i:0;s:10:"categories";i:0;s:14:"rowDescription";N;s:11:"l18n_parent";i:0;}', 'zzz_deleted_tx_flux_column' => null, 'zzz_deleted_tx_flux_parent' => null, 'zzz_deleted_tx_flux_children' => null, 'zzz_deleted_tx_fed_fcefile' => '', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'tx_news_related_news' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 11252, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_flux_migrated_version' => null, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_slug' => '', 'tx_dce_new_container' => 0, '_LOCALIZED_UID' => 11294))
in /usr/www/users/cloosl/httpdocs/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 203
            $this->contentObject->cObjGetSingle('LOAD_REGISTER', $this->arguments['loadRegister']);
        }
        $elements = [];
        foreach ($rows as $row) {
            array_push($elements, static::renderRecord($row));
        }
        if (false === empty($this->arguments['loadRegister'])) {
            $this->contentObject->cObjGetSingle('RESTORE_REGISTER', '');
        }
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper->getRenderedRecords(array(array('uid' => 11263, 'pid' => 2160, 't3ver_oid' => 0, 'zzz_deleted_t3ver_id' => 0, 't3ver_wsid' => 0, 'zzz_deleted_t3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 1812, 'tstamp' => 1653313918, 'crdate' => 1653313918, 'cruser_id' => 19, 'hidden' => 0, 'sorting' => 1538, 'CType' => 'text', 'header' => '', 'header_position' => '', 'bodytext' => '<h2>Firma CLOOS na odborných veletrzích</h2> Jsme zastoupeni na řadě veletrhů a výstav doma i v zahraničí. Zde najdete jejich seznam: <br /><br />', 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'zzz_deleted_imagecaption' => null, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'zzz_deleted_spaceBefore' => 0, 'zzz_deleted_spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'zzz_deleted_imagecaption_position' => '', 'zzz_deleted_image_link' => null, 'image_zoom' => 0, 'zzz_deleted_image_noRows' => 0, 'zzz_deleted_image_effects' => 0, 'zzz_deleted_image_compression' => 0, 'zzz_deleted_altText' => null, 'zzz_deleted_titleText' => null, 'zzz_deleted_longdescURL' => null, 'header_layout' => '0', 'zzz_deleted_text_align' => '', 'zzz_deleted_text_face' => 0, 'zzz_deleted_text_size' => 0, 'zzz_deleted_text_color' => 0, 'zzz_deleted_text_properties' => 0, 'zzz_deleted_menu_type' => '0', 'list_type' => '', 'zzz_deleted_table_border' => 0, 'zzz_deleted_table_cellspacing' => 0, 'zzz_deleted_table_cellpadding' => 0, 'zzz_deleted_table_bgColor' => 0, 'zzz_deleted_select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'zzz_deleted_section_frame' => 0, 'date' => 0, 'zzz_deleted_multimedia' => null, 'zzz_deleted_image_frames' => 0, 'recursive' => 0, 'imageheight' => 0, 'zzz_deleted_rte_enabled' => 0, 'sys_language_uid' => 4, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 11263, 'l18n_diffsource' => 'a:24:{s:5:"CType";s:4:"text";s:14:"tx_fed_fcefile";s:0:"";s:6:"colPos";s:1:"0";s:16:"sys_language_uid";s:1:"0";s:6:"header";s:0:"";s:13:"header_layout";s:1:"0";s:15:"header_position";s:0:"";s:4:"date";s:1:"0";s:11:"header_link";s:0:"";s:8:"bodytext";s:169:"<h2>CLOOS auf Fachmessen</h2> Wir sind auf zahlreichen Messen und Ausstellungen im In- und Ausland vertreten. Hier finden Sie eine entsprechende Übersicht:<br /><br />";s:11:"rte_enabled";s:1:"0";s:6:"layout";s:1:"0";s:11:"spaceBefore";s:1:"0";s:10:"spaceAfter";s:1:"0";s:13:"section_frame";s:1:"0";s:6:"hidden";s:1:"0";s:12:"sectionIndex";s:1:"1";s:9:"linkToTop";s:1:"0";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:10:"categories";s:1:"0";s:16:"tx_flux_children";N;s:11:"l18n_parent";s:1:"0";}', 'zzz_deleted_tx_flux_column' => null, 'zzz_deleted_tx_flux_parent' => null, 'zzz_deleted_tx_flux_children' => null, 'zzz_deleted_tx_fed_fcefile' => '', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'tx_news_related_news' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 11263, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_flux_migrated_version' => null, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_slug' => '', 'tx_dce_new_container' => 0, '_LOCALIZED_UID' => 11267), array('uid' => 11252, 'pid' => 2160, 't3ver_oid' => 0, 'zzz_deleted_t3ver_id' => 0, 't3ver_wsid' => 0, 'zzz_deleted_t3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 11252, 'tstamp' => 1657262012, 'crdate' => 1657262000, 'cruser_id' => 26, 'hidden' => 0, 'sorting' => 1539, 'CType' => 'list', 'header' => 'Veletržní kalendář', 'header_position' => '', 'bodytext' => '', 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'zzz_deleted_imagecaption' => null, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '2159', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'zzz_deleted_spaceBefore' => 0, 'zzz_deleted_spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'zzz_deleted_imagecaption_position' => '', 'zzz_deleted_image_link' => null, 'image_zoom' => 0, 'zzz_deleted_image_noRows' => 0, 'zzz_deleted_image_effects' => 0, 'zzz_deleted_image_compression' => 0, 'zzz_deleted_altText' => null, 'zzz_deleted_titleText' => null, 'zzz_deleted_longdescURL' => null, 'header_layout' => '0', 'zzz_deleted_text_align' => '', 'zzz_deleted_text_face' => 0, 'zzz_deleted_text_size' => 0, 'zzz_deleted_text_color' => 0, 'zzz_deleted_text_properties' => 0, 'zzz_deleted_menu_type' => '0', 'list_type' => 'schmelzermedientradefairs_pi1', 'zzz_deleted_table_border' => 0, 'zzz_deleted_table_cellspacing' => 0, 'zzz_deleted_table_cellpadding' => 0, 'zzz_deleted_table_bgColor' => 0, 'zzz_deleted_select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'zzz_deleted_section_frame' => 0, 'date' => 0, 'zzz_deleted_multimedia' => null, 'zzz_deleted_image_frames' => 0, 'recursive' => 0, 'imageheight' => 0, 'zzz_deleted_rte_enabled' => 0, 'sys_language_uid' => 4, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lZH"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lNL"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lEN"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lFR"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> <language index="lCS"> <field index="xmlTitle"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="options"> <language index="lDEF"> <field index="categoryTitles"> <value index="vDEF">Alle,Deutschland,Europa,Weltweit</value> </field> <field index="listElements"> <el index="el"> <field index="61e80939a2e5d892026183"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">STOM</value> </field> <field index="fairDate"> <value index="vDEF">05.-07. April 2022</value> </field> <field index="fairCity"> <value index="vDEF">Kielce</value> </field> <field index="fairCountry"> <value index="vDEF">Polen</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Polska</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3779</value> </field> <field index="link"> <value index="vDEF">https://www.targikielce.pl/en/stom</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de90fd157a8a437094097"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">TechniShow</value> </field> <field index="fairDate"> <value index="vDEF">30. August - 02. September 2022</value> </field> <field index="fairCity"> <value index="vDEF">Utrecht</value> </field> <field index="fairCountry"> <value index="vDEF">Niederlande</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Benelux</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3770</value> </field> <field index="link"> <value index="vDEF">https://www.technishow.nl/exposeren/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5fcf70aa96123973211211"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">1</value> </field> <field index="fairName"> <value index="vDEF">SCHWEISSEN &amp; SCHNEIDEN</value> </field> <field index="fairDate"> <value index="vDEF">11.-15. September 2023</value> </field> <field index="fairCity"> <value index="vDEF">Essen</value> </field> <field index="fairCountry"> <value index="vDEF">Deutschland</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Haiger</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2891</value> </field> <field index="link"> <value index="vDEF">https://www.schweissen-schneiden.com/fuegen-trennen-beschichten/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e808b1cb8cb582691614"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Nordic Welding Expo</value> </field> <field index="fairDate"> <value index="vDEF">29. November - 01. Dezember 2022</value> </field> <field index="fairCity"> <value index="vDEF">Tampere</value> </field> <field index="fairCountry"> <value index="vDEF">Finnland</value> </field> <field index="fairCompany"> <value index="vDEF">Meuro Tech</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3931</value> </field> <field index="link"> <value index="vDEF">https://www.nordicweldingexpo.fi/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="620cfb5e63913632927284"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">FABTECH</value> </field> <field index="fairDate"> <value index="vDEF">08.-10. November2022</value> </field> <field index="fairCity"> <value index="vDEF">Atlanta</value> </field> <field index="fairCountry"> <value index="vDEF">USA</value> </field> <field index="fairCompany"> <value index="vDEF">CRW</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2910</value> </field> <field index="link"> <value index="vDEF">https://www.fabtechexpo.com/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e8132f47269387954257"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">CIIE</value> </field> <field index="fairDate"> <value index="vDEF">05.-10. November 2022</value> </field> <field index="fairCity"> <value index="vDEF">Shanghai</value> </field> <field index="fairCountry"> <value index="vDEF">China</value> </field> <field index="fairCompany"> <value index="vDEF">Estun/CLOOS China</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3528</value> </field> <field index="link"> <value index="vDEF">https://www.ciie.org/zbh/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e812e94eb82718655921"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">1</value> </field> <field index="fairName"> <value index="vDEF">EuroBLECH</value> </field> <field index="fairDate"> <value index="vDEF">25.-28. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Hannover</value> </field> <field index="fairCountry"> <value index="vDEF">Deutschland</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Haiger</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2909</value> </field> <field index="link"> <value index="vDEF">https://www.euroblech.com/de-de.html</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e8126f33df2753472577"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">ExpoWelding</value> </field> <field index="fairDate"> <value index="vDEF">18.-20. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Sosnowiec</value> </field> <field index="fairCountry"> <value index="vDEF">Polen</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Polska</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3775</value> </field> <field index="link"> <value index="vDEF">https://www.expowelding.pl/2022/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e811d8c012a804506826"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">MSV</value> </field> <field index="fairDate"> <value index="vDEF">04.-07. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Brünn</value> </field> <field index="fairCountry"> <value index="vDEF">Tschechien</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Praha</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2894</value> </field> <field index="link"> <value index="vDEF">https://www.bvv.cz/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="6204d88ea094a397369170"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Robot Investment Fair</value> </field> <field index="fairDate"> <value index="vDEF">04.-06. Oktober 2022</value> </field> <field index="fairCity"> <value index="vDEF">Istanbul</value> </field> <field index="fairCountry"> <value index="vDEF">Türkei</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Türkei</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=4607</value> </field> <field index="link"> <value index="vDEF">https://www.robotyatirimlari.com/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e8118b03865503066954"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">D2M</value> </field> <field index="fairDate"> <value index="vDEF">21.-22. September 2022</value> </field> <field index="fairCity"> <value index="vDEF">Kortrijk</value> </field> <field index="fairCountry"> <value index="vDEF">Niederlande</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Benelux</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6731</value> </field> <field index="link"> <value index="vDEF">https://www.d2m.be/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e811061af53347427532"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">1</value> </field> <field index="fairName"> <value index="vDEF">AUTOMATICA</value> </field> <field index="fairDate"> <value index="vDEF">21.-24. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">München</value> </field> <field index="fairCountry"> <value index="vDEF">Deutschland</value> </field> <field index="fairCompany"> <value index="vDEF">FerRobotics</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3820</value> </field> <field index="link"> <value index="vDEF">https://automatica-munich.com/de/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de91010f34f7368620788"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">Fabtech Show Mexico</value> </field> <field index="fairDate"> <value index="vDEF">03.-05. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Mexico City</value> </field> <field index="fairCountry"> <value index="vDEF">Mexico</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Mexico</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3780</value> </field> <field index="link"> <value index="vDEF">https://mexico.fabtechexpo.com/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80f92750c4988755151"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">WIN Eurasia</value> </field> <field index="fairDate"> <value index="vDEF">08.-11. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Istanbul</value> </field> <field index="fairCountry"> <value index="vDEF">Türkei</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Turkey</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2896</value> </field> <field index="link"> <value index="vDEF">http://www.win-eurasia.com/en/exhibition/about-win-eurasia</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80f1ac5942560684113"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">Beijing Essen Welding &amp; Cutting</value> </field> <field index="fairDate"> <value index="vDEF">07.-10. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Shenzhen</value> </field> <field index="fairCountry"> <value index="vDEF">China</value> </field> <field index="fairCompany"> <value index="vDEF">Estun / CLOOS China</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3224</value> </field> <field index="link"> <value index="vDEF">https://www.schweissen-schneiden.com/joining-cutting-surfacing/schweissen-schneiden-worldwide/bewc/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61af2d2555275657480164"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Journée du Métal</value> </field> <field index="fairDate"> <value index="vDEF">02. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Namur</value> </field> <field index="fairCountry"> <value index="vDEF">Belgien</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Benelux</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6690</value> </field> <field index="link"> <value index="vDEF">https://www.journeedumetal.be/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80ea2cc897961008969"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">ITM</value> </field> <field index="fairDate"> <value index="vDEF">31. Mai - 03. Juni 2022</value> </field> <field index="fairCity"> <value index="vDEF">Posen</value> </field> <field index="fairCountry"> <value index="vDEF">Polen</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Polska</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=4406</value> </field> <field index="link"> <value index="vDEF">https://itm-europe.pl/en</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61af2cccd6e2c210973415"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Lamiera</value> </field> <field index="fairDate"> <value index="vDEF">18.-21. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Mailand</value> </field> <field index="fairCountry"> <value index="vDEF">Italien</value> </field> <field index="fairCompany"> <value index="vDEF">Saldotecnica Busan</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=2895</value> </field> <field index="link"> <value index="vDEF">https://www.lamiera.net/en/homepage-en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de9101806fa3768723089"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">2</value> </field> <field index="fairName"> <value index="vDEF">Metalshow</value> </field> <field index="fairDate"> <value index="vDEF">11.-14. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Bukarest</value> </field> <field index="fairCountry"> <value index="vDEF">Rumänien</value> </field> <field index="fairCompany"> <value index="vDEF">Robcon</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3771</value> </field> <field index="link"> <value index="vDEF">https://metalshow-tib.ro/en/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e80a4075d96767851830"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">FIMAQH</value> </field> <field index="fairDate"> <value index="vDEF">10.-14. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Buenos Aires</value> </field> <field index="fairCountry"> <value index="vDEF">Argentinien</value> </field> <field index="fairCompany"> <value index="vDEF">ABD</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6730</value> </field> <field index="link"> <value index="vDEF">https://www.fimaqh.com/2022/en/inicio-2/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="61e809bf08e9f842808854"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">Konmak</value> </field> <field index="fairDate"> <value index="vDEF">10.-13. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Konya</value> </field> <field index="fairCountry"> <value index="vDEF">Türkei</value> </field> <field index="fairCompany"> <value index="vDEF">CLOOS Turkey</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=6733</value> </field> <field index="link"> <value index="vDEF">http://www.konmakfair.com/</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> <field index="5de9100bb38ad590606796"> <value index="listElement"> <el> <field index="fairCategory"> <value index="vDEF">3</value> </field> <field index="fairName"> <value index="vDEF">FEIMEC</value> </field> <field index="fairDate"> <value index="vDEF">03.-07. Mai 2022</value> </field> <field index="fairCity"> <value index="vDEF">Sao Paulo</value> </field> <field index="fairCountry"> <value index="vDEF">Brasilien</value> </field> <field index="fairCompany"> <value index="vDEF">Tecsold</value> </field> <field index="image"> <value index="vDEF">t3://file?uid=3777</value> </field> <field index="link"> <value index="vDEF">https://www.feimec.com.br/en/HOME.html</value> </field> <field index="fileName"> <value index="vDEF"></value> </field> <field index="file"> <value index="vDEF"></value> </field> </el> </value> <value index="_TOGGLE">1</value> </field> </el> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 11252, 'l18n_diffsource' => 'a:26:{s:5:"CType";s:4:"list";s:6:"colPos";i:0;s:6:"header";s:13:"Messekalender";s:13:"header_layout";s:1:"0";s:15:"header_position";s:0:"";s:4:"date";i:0;s:11:"header_link";s:0:"";s:9:"subheader";s:0:"";s:9:"list_type";s:29:"schmelzermedientradefairs_pi1";s:5:"pages";s:4:"2159";s:9:"recursive";i:0;s:6:"layout";i:0;s:11:"frame_class";s:7:"default";s:18:"space_before_class";s:0:"";s:17:"space_after_class";s:0:"";s:12:"sectionIndex";i:1;s:9:"linkToTop";i:0;s:16:"sys_language_uid";i:0;s:6:"hidden";i:0;s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:8:"editlock";i:0;s:10:"categories";i:0;s:14:"rowDescription";N;s:11:"l18n_parent";i:0;}', 'zzz_deleted_tx_flux_column' => null, 'zzz_deleted_tx_flux_parent' => null, 'zzz_deleted_tx_flux_children' => null, 'zzz_deleted_tx_fed_fcefile' => '', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'tx_news_related_news' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 11252, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_flux_migrated_version' => null, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_slug' => '', 'tx_dce_new_container' => 0, '_LOCALIZED_UID' => 11294)))
in /usr/www/users/cloosl/httpdocs/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 110
            $contentRecords = $this->getSlideRecords($pageUid, $limit);
        }

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

        return $contentRecords;
    }
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper->getContentRecords()
in /usr/www/users/cloosl/httpdocs/typo3conf/ext/vhs/Classes/ViewHelpers/Content/RenderViewHelper.php line 51
        if ('BE' === TYPO3_MODE) {
            return '';
        }

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

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

        return $this->callRenderMethod();
    }

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

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

$output29 .= FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper::renderStatic($arguments87, $renderChildrenClosure88, $renderingContext);

$output29 .= '
    <!--TYPO3SEARCH_end--> 
   </div>
at Page_action_defaultWithTeaser_9a59b8605bffa692150ab54428bd28bb4e26a422->section_4f9be057f0ea5d2ba72fd2c810e8d7b9aa98b469(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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 /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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 /usr/www/users/cloosl/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_ef329126da0e01d608926eb66b0537029bdac9dd.php line 172
$arguments18['contentAs'] = NULL;
$arguments18['debug'] = true;
$arguments18['section'] = 'Content';

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

$output0 .= '
 ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_ef329126da0e01d608926eb66b0537029bdac9dd->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/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 /usr/www/users/cloosl/httpdocs/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php line 366
                );
                $paths->fillDefaultsByPackageName(GeneralUtility::camelCaseToLowerCaseUnderscored($vendorLessExtensionName));
                $paths->setTemplatePathAndFilename($templatePathAndFilename);
            }
            $content = $this->view->render();
        } else {
            $foreignControllerClass = $this->configurationService
                ->getResolver()
                ->resolveFluxControllerClassNameByExtensionKeyAndControllerName(
at FluidTYPO3\Flux\Controller\AbstractFluxController->performSubRendering('Cloospages', 'Page', 'defaultWithTeaser', 'tx_cloospages_page')
in /usr/www/users/cloosl/httpdocs/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php line 317
        $actualActionName = null !== $requestActionName ? $requestActionName : $controllerActionName;
        $controllerName = $this->request->getControllerName();

        return $this->performSubRendering(
            $controllerExtensionKey,
            $controllerName,
            $actualActionName,
            $pluginSignature
        );
at FluidTYPO3\Flux\Controller\AbstractFluxController->renderAction()
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 498
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->eventDispatcher->dispatch(new BeforeActionCallEvent(static::class, $this->actionMethodName, $preparedArguments));
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod()
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 426
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
        }
        $this->callActionMethod();
        $this->renderAssetsForRequest($request);
    }

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

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 183
    protected function handleRequest(): string
    {
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler();

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

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

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 742
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), '5')
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 687
        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('includeCSS.' => array('language_switch' => 'EXT:cloospages/Resources/Public/Css/main-nav-psc.css', 'tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/Css/shariff.complete.css', 'cloosJqueryUi' => 'https://code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css', 'cloosJqueryUi.' => array('external' => '1'), 'cloos_products' => 'EXT:cloos_products/Resources/Public/Css/cloos_products.min.css', 'schmelzermedien_tradefairs' => 'EXT:schmelzermedien_tradefairs/Resources/Public/Css/tradefairs.css', 'style' => 'fileadmin/Resources/Private/scss/styles.scss', 'style.' => array('outputdir' => 'fileadmin/Resources/Public/css/', 'formatter' => 'ScssPhp\\ScssPhp\\Formatter\\Compressed')), 'includeJSFooter.' => array('language_select2_js' => 'EXT:cloospages/Resources/Public/Js/Dist/select2.min.js', 'language_switch_js' => 'EXT:cloospages/Resources/Public/Js/Dist/scripts.js', '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', 'powermailCond' => 'EXT:powermail_cond/Resources/Public/JavaScript/PowermailCondition.min.js', 'tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/JavaScript/shariff.min.js', 'EXT:cs_seo/Resources/Public/JavaScript/jquery.cs_seo.ga.js', '654.' => array('if.' => array('isTrue' => '')), 'cloosFinUI1' => 'EXT:cloos_products/Resources/Public/JavaScript/Lib/jquery-ui.min.js', 'cloosFinUI2' => 'EXT:cloos_products/Resources/Public/JavaScript/Lib/jquery.touchswipe.js', 'cloosFinUI3' => 'EXT:cloos_products/Resources/Public/JavaScript/dist/main.js', 'cloosFinUI4' => 'EXT:cloos_products/Resources/Public/JavaScript/dist/formScript.js', 'schmelzermedien_tradefairs' => 'EXT:schmelzermedien_tradefairs/Resources/Public/JavaScript/tradefairs.js', 'footerJs' => 'fileadmin/Resources/Public/js/footer.js'), 'typeNum' => '0', 'USER', '5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), 'COA', '3132.' => array('wrap' => '<script id="powermail_conditions_container"|></script>', 'TEXT', '10.' => array('noTrimWrap' => '| data-condition-uri="|"|', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&type=3132', 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'meta.' => array('og:type' => 'website', 'og:site_name.' => array('data' => 'TSFE:tmpl|sitetitle'), 'og:image.' => array('stdWrap.' => array('typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'path:', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))), 'height' => '628c', 'width' => '1200')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'twitter:card' => 'summary', 'twitter:card.' => array('override' => 'summary_large_image', 'override.' => array('if.' => array('isTrue.' => array('data' => 'field:twitter_image // field:og_image')))), 'twitter:creator.' => array('data' => 'page:tx_csseo_tw_creator', 'htmlSpecialChars' => '1', 'wrap' => '@|', 'ifEmpty' => '', 'required' => '1'), 'twitter:site.' => array('data' => 'page:tx_csseo_tw_site', 'htmlSpecialChars' => '1', 'wrap' => '@|', 'ifEmpty' => '', 'required' => '1'), 'twitter:image.' => array('stdWrap.' => array('typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'path: // path:', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))), 'height' => '512c', 'width' => '1024')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'description.' => array('field' => 'description', 'ifEmpty' => ''), 'abstract.' => array('field' => 'abstract', 'ifEmpty' => ''), 'keywords.' => array('field' => 'keywords', 'ifEmpty' => '')), 'jsInline.' => array('COA', '654.' => array('TEXT', '15.' => array('value' => '', 'wrap' => ' /* Google Tag Manager */ (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\': new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src= \'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f); })(window,document,\'script\',\'dataLayer\',\'#\'); /* End Google Tag Manager */', 'wrap.' => array('splitChar' => '#'), 'required' => '1'), 'TEXT', '20.' => array('value' => '', 'wrap' => ' /* PIWIK */ var _paq = _paq || []; _paq.push([\'trackPageView\']); _paq.push([\'enableLinkTracking\']); (function() { var u="//#"; _paq.push([\'setTrackerUrl\', u+\'js/\']); _paq.push([\'setSiteId\', 1]); var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0]; g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'js/\'; s.parentNode.insertBefore(g,s); })(); /* End PIWIK */', 'wrap.' => array('splitChar' => '#'), 'required' => '1'))), 'headerData.' => array('COA', '657.' => array('COA', '10.' => array('TEXT', '10.' => array('value' => '', 'wrap' => '<!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=#"></script>', 'wrap.' => array('splitChar' => '#'), 'required' => '1'), 'TEXT', '20.' => array('value' => '', 'wrap' => '<!-- Global site tag (gtag.js) - Google Analytics --><script> /* Google Analytics Optout */ var gaProperty = \'#\'; var disableStr = \'ga-disable-\' + gaProperty; if (document.cookie.indexOf(disableStr + \'=true\') > -1) { window[disableStr] = true; } function gaOptout() { document.cookie = disableStr + \'=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/\'; window[disableStr] = true; } /* Google Analytics */ window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(\'js\', new Date()); gtag(\'config\', gaProperty, { \'anonymize_ip\': true }); /* End Google Analytics */</script>', 'wrap.' => array('splitChar' => '#'), 'required' => '1'))), 'TEXT', '6.' => array('value' => ' <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="robots" content="index, follow" /> <meta name="google-site-verification" content="KQpasw1-u7lOp8F21_7b310XeEun5QceQPnMNK1-o28" /> <meta name="google-site-verification" content="hYUm6NlvVqOVtXych4zJfTFPqBXFYKXnlw8hwidDUuo" />'), 'TEXT', '7.' => array('value' => ' <script type="application/javascript" src="https://app.usercentrics.eu/latest/main.js" language="en" id="wEfm-Cj0N-o8HY"></script> <script type="application/javascript" src="https://privacy-proxy.usercentrics.eu/latest/uc-block.bundle.js"></script>'), 'TEXT', '8.' => array('value' => ' <script src="https://app.primeleads.de/api/v1/vhvnbthnqi" async></script>'), 'FLUIDTEMPLATE', '50.' => array('file' => 'EXT:cloospages/Resources/Private/Templates/HrefLang.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'language', 'special.' => array('value' => '0,1,2,3,4,5,6,7,8,9'), 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'id, L, cHash', 'method' => 'GET'), 'as' => 'language'))), 'COA', '997.' => array('TEXT', '10.' => array('value' => 'G-F7XNM32C17', 'wrap' => '<!-- Global site tag (gtag.js) - Google Analytics --> <script type="text/javascript" async src="https://www.googletagmanager.com/gtag/js?id=#"></script> ', 'wrap.' => array('splitChar' => '#'), 'required' => '1'), 'TEXT', '20.' => array('value' => 'G-F7XNM32C17', 'wrap' => '<!-- Global site tag (gtag.js) - Google Analytics --> <script type="text/javascript" data-ignore="1" > /* Google Analytics Optout */ var gaProperty = \'#\'; var disableStr = \'ga-disable-\' + gaProperty; function gaOptout() { document.cookie = disableStr + \'=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/\'; window[disableStr] = true; } /* End Google Analytics OputOut */ </script> ', 'wrap.' => array('splitChar' => '#'), 'required' => '1'), 'TEXT', '30.' => array('value' => 'G-F7XNM32C17', 'wrap' => '<script data-ignore="1" type="text/javascript"> /* Google Analytics Optout */ var gaProperty = \'#\'; var disableStr = \'ga-disable-\' + gaProperty; if (document.cookie.indexOf(disableStr + \'=true\') > -1) { window[disableStr] = true; } /* Google Analytics */ window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(\'js\', new Date()); gtag(\'config\', \'G-F7XNM32C17\', { \'debug_mode\':true }); /* End Google Analytics */ </script> ', 'wrap.' => array('splitChar' => '#'), 'required' => '1'), 'TEXT', '40.' => array('value' => '{$plugin.tx_cookieconsent.tracking.leadinfo}', 'wrap' => ' <!-- Leadinfo tracking code --> <script> (function(l,e,a,d,i,n,f,o){if(!l[i]){l.GlobalLeadinfoNamespace=l.GlobalLeadinfoNamespace||[]; l.GlobalLeadinfoNamespace.push(i);l[i]=function(){(l[i].q=l[i].q||[]).push(arguments)};l[i].t=l[i].t||n; l[i].q=l[i].q||[];o=e.createElement(a);f=e.getElementsByTagName(a)[0];o.async=1;o.src=d;f.parentNode.insertBefore(o,f);} }(window,document,\'script\',\'https://cdn.leadinfo.net/ping.js\',\'leadinfo\',\'LI-65154476728F6\')); </script> ', 'wrap.' => array('splitChar' => '#'), 'required' => '1'))), 'footerData.' => array('USER', '655.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getSiteSearch', 'userFunc.' => array('pid' => '0', 'searchterm' => 'searchterm'), 'stdWrap.' => array('if.' => array('isTrue' => '0'))), 'USER', '656.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getBreadcrumb', 'stdWrap.' => array('if.' => array('isTrue' => '0'))), 'USER', '657.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getJsonLdOfPageOrRecord'))))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 231
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 197
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 133
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

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

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

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

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/cloosl/httpdocs/typo3conf/ext/vhs/Classes/Middleware/AssetInclusion.php line 20
class AssetInclusion implements MiddlewareInterface
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        $body = $response->getBody();
        $body->rewind();
        $contents = $body->getContents();
at FluidTYPO3\Vhs\Middleware\AssetInclusion->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Register the backend user as aspect
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 81
                return $response;
            }
        }

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

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/cloosl/httpdocs/typo3conf/ext/oauth2_client/Classes/Middleware/Frontend/AfterAuthenticationHandler.php line 163
                return $this->registrationController->handleRequest($request);
            }
        }

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

    private function performSubRequest(ServerRequestInterface $request): ResponseInterface
    {
at Waldhacker\Oauth2Client\Middleware\Frontend\AfterAuthenticationHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/cloosl/httpdocs/typo3conf/ext/oauth2_client/Classes/Middleware/Frontend/BeforeAuthenticationHandler.php line 93
            $action = $getParameters['tx_oauth2client']['action'] === 'authorize' ? RequestStates::ACTION_REGISTRATION_AUTHORIZE : RequestStates::ACTION_REGISTRATION_VERIFY;
            $request = $this->requestStates->setCurrentAction($action, $request);
        }

        return $handler->handle($request);
    }
}
at Waldhacker\Oauth2Client\Middleware\Frontend\BeforeAuthenticationHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$3b933))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/AbstractApplication.php line 85
     * @return ResponseInterface
     */
    protected function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->requestHandler->handle($request);
    }

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

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

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/typo3/sysext/core/Classes/Http/AbstractApplication.php line 97
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/index.php line 39
// 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 /usr/www/users/cloosl/_libs/typo3/10/typo3_src-10.4.21/index.php line 40
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();
});