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) #1390290029 TYPO3\CMS\Core\Resource\Exception\InsufficientFolderReadPermissionsException

You are trying to use a method on the inaccessible folder "_processed_".

in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Resource/InaccessibleFolder.php line 39
     * @throws Exception\InsufficientFolderReadPermissionsException
     */
    protected function throwInaccessibleException()
    {
        throw new InsufficientFolderReadPermissionsException(
            'You are trying to use a method on the inaccessible folder "' . $this->getName() . '".',
            1390290029
        );
    }
at TYPO3\CMS\Core\Resource\InaccessibleFolder->throwInaccessibleException()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Resource/InaccessibleFolder.php line 259
     * @throws Exception\InsufficientFolderReadPermissionsException
     */
    public function hasFolder($name)
    {
        $this->throwInaccessibleException();
    }

    /**
     * Updates the properties of this folder, e.g. after re-indexing or moving it.
at TYPO3\CMS\Core\Resource\InaccessibleFolder->hasFolder('4')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Resource/ResourceStorage.php line 2878
        );

        try {
            foreach ($nestedFolderNames as $folderName) {
                if ($processingFolder->hasFolder($folderName)) {
                    $processingFolder = $processingFolder->getSubfolder($folderName);
                } else {
                    $currentEvaluatePermissions = $processingFolder->getStorage()->getEvaluatePermissions();
                    $processingFolder->getStorage()->setEvaluatePermissions(false);
at TYPO3\CMS\Core\Resource\ResourceStorage->getNestedProcessingFolder(object(TYPO3\CMS\Core\Resource\File), object(TYPO3\CMS\Core\Resource\InaccessibleFolder))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Resource/ResourceStorage.php line 2854
        }

        $processingFolder = $this->processingFolder;
        if (!empty($file)) {
            $processingFolder = $this->getNestedProcessingFolder($file, $processingFolder);
        }
        return $processingFolder;
    }

at TYPO3\CMS\Core\Resource\ResourceStorage->getProcessingFolder(object(TYPO3\CMS\Core\Resource\File))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Resource/Processing/LocalImageProcessor.php line 110
    protected function checkForExistingTargetFile(TaskInterface $task)
    {
        // the storage of the processed file, not of the original file!
        $storage = $task->getTargetFile()->getStorage();
        $processingFolder = $storage->getProcessingFolder($task->getSourceFile());

        // explicitly check for the raw filename here, as we check for files that existed before we even started
        // processing, i.e. that were processed earlier
        if ($processingFolder->hasFile($task->getTargetFileName())) {
at TYPO3\CMS\Core\Resource\Processing\LocalImageProcessor->checkForExistingTargetFile(object(TYPO3\CMS\Core\Resource\Processing\ImageCropScaleMaskTask))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Resource/Processing/LocalImageProcessor.php line 50
     * @throws \InvalidArgumentException
     */
    public function processTask(TaskInterface $task): void
    {
        if ($this->checkForExistingTargetFile($task)) {
            return;
        }
        $this->processTaskWithLocalFile($task, null);
    }
at TYPO3\CMS\Core\Resource\Processing\LocalImageProcessor->processTask(object(TYPO3\CMS\Core\Resource\Processing\ImageCropScaleMaskTask))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Resource/Service/FileProcessingService.php line 137
        if ($processedFile->isNew() || (!$processedFile->usesOriginalFile() && !$processedFile->exists()) ||
            $processedFile->isOutdated()) {
            $task = $processedFile->getTask();
            $processor = $this->getProcessorByTask($task);
            $processor->processTask($task);

            if ($task->isExecuted() && $task->isSuccessful() && $processedFile->isProcessed()) {
                $processedFileRepository = GeneralUtility::makeInstance(ProcessedFileRepository::class);
                $processedFileRepository->add($processedFile);
at TYPO3\CMS\Core\Resource\Service\FileProcessingService->process(object(TYPO3\CMS\Core\Resource\ProcessedFile), object(TYPO3\CMS\Core\Resource\ResourceStorage))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Resource/Service/FileProcessingService.php line 110
        // Only handle the file if it is not processed yet
        // (maybe modified or already processed by a signal)
        // or (in case of preview images) already in the DB/in the processing folder
        if (!$processedFile->isProcessed()) {
            $this->process($processedFile, $targetStorage);
        }

        // Post-process (enrich) the file
        /** @var Resource\Event\AfterFileProcessingEvent $event */
at TYPO3\CMS\Core\Resource\Service\FileProcessingService->processFile(object(TYPO3\CMS\Core\Resource\File), object(TYPO3\CMS\Core\Resource\ResourceStorage), 'Image.CropScaleMask', array('width' => 540, 'height' => '360c', 'minWidth' => null, 'minHeight' => null, 'maxWidth' => null, 'maxHeight' => null, 'crop' => null))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Resource/ResourceStorage.php line 1455
    {
        if ($fileObject->getStorage() !== $this) {
            throw new \InvalidArgumentException('Cannot process files of foreign storage', 1353401835);
        }
        $processedFile = $this->getFileProcessingService()->processFile($fileObject, $this, $context, $configuration);

        return $processedFile;
    }

at TYPO3\CMS\Core\Resource\ResourceStorage->processFile(object(TYPO3\CMS\Core\Resource\File), 'Image.CropScaleMask', array('width' => '540', 'height' => '360c', 'minWidth' => null, 'minHeight' => null, 'maxWidth' => null, 'maxHeight' => null, 'crop' => null))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Resource/File.php line 254
     * @return ProcessedFile The processed file
     */
    public function process($taskType, array $configuration)
    {
        return $this->getStorage()->processFile($this, $taskType, $configuration);
    }

    /**
     * Returns an array representation of the file.
at TYPO3\CMS\Core\Resource\File->process('Image.CropScaleMask', array('width' => '540', 'height' => '360c', 'minWidth' => null, 'minHeight' => null, 'maxWidth' => null, 'maxHeight' => null, 'crop' => null))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/extbase/Classes/Service/ImageService.php line 72
            // Get the original file from the file reference
            $image = $image->getOriginalFile();
        }

        $processedImage = $image->process(ProcessedFile::CONTEXT_IMAGECROPSCALEMASK, $processingInstructions);
        $this->setCompatibilityValues($processedImage);

        return $processedImage;
    }
at TYPO3\CMS\Extbase\Service\ImageService->applyProcessingInstructions(object(TYPO3\CMS\Core\Resource\File), array('width' => '540', 'height' => '360c', 'minWidth' => null, 'minHeight' => null, 'maxWidth' => null, 'maxHeight' => null, 'crop' => null))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/fluid/Classes/ViewHelpers/ImageViewHelper.php line 182
            ];
            if (!empty($this->arguments['fileExtension'] ?? '')) {
                $processingInstructions['fileExtension'] = $this->arguments['fileExtension'];
            }
            $processedImage = $this->imageService->applyProcessingInstructions($image, $processingInstructions);
            $imageUri = $this->imageService->getImageUri($processedImage, $this->arguments['absolute']);

            if (!$this->tag->hasAttribute('data-focus-area')) {
                $focusArea = $cropVariantCollection->getFocusArea($cropVariant);
at TYPO3\CMS\Fluid\ViewHelpers\ImageViewHelper->render()
at call_user_func(array(object(TYPO3\CMS\Fluid\ViewHelpers\ImageViewHelper), 'render'))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 260
     */
    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 /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 248
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 80
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke('TYPO3\\CMS\\Fluid\\ViewHelpers\\ImageViewHelper', array('additionalAttributes' => null, 'data' => null, 'aria' => null, 'class' => 'img-responsive img-fluid', 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => null, 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'alt' => null, 'ismap' => null, 'longdesc' => null, 'usemap' => null, 'loading' => null, 'decoding' => null, 'src' => '', 'treatIdAsReference' => false, 'image' => object(GeorgRinger\News\Domain\Model\FileReference), 'crop' => null, 'cropVariant' => 'aktuellesliste', 'fileExtension' => null, 'width' => '540', 'height' => '360c', 'minWidth' => null, 'minHeight' => null, 'maxWidth' => null, 'maxHeight' => null, 'absolute' => false), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 517
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $viewHelperClassName = get_called_class();
        return $renderingContext->getViewHelperInvoker()->invoke($viewHelperClassName, $arguments, $renderingContext, $renderChildrenClosure);
    }

    /**
     * Save the associated ViewHelper node in a static public class variable.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::renderStatic(array('additionalAttributes' => null, 'data' => null, 'aria' => null, 'class' => 'img-responsive img-fluid', 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => null, 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'alt' => null, 'ismap' => null, 'longdesc' => null, 'usemap' => null, 'loading' => null, 'decoding' => null, 'src' => '', 'treatIdAsReference' => false, 'image' => object(GeorgRinger\News\Domain\Model\FileReference), 'crop' => null, 'cropVariant' => 'aktuellesliste', 'fileExtension' => null, 'width' => '540', 'height' => '360c', 'minWidth' => null, 'minHeight' => null, 'maxWidth' => null, 'maxHeight' => null, 'absolute' => false), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/partial_List_Item_grid_a35507776f34379df5ed7971321e7aa79f97c257.php line 438
$array37 = array (
);$arguments31['else'] = $renderingContext->getVariableProvider()->getByPath('settings.list.media.image.height', $array37);
$arguments19['height'] = TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments31, $renderChildrenClosure32, $renderingContext);

$output18 .= TYPO3\CMS\Fluid\ViewHelpers\ImageViewHelper::renderStatic($arguments19, $renderChildrenClosure20, $renderingContext);

$output18 .= '
          </div>
    ';
at partial_List_Item_grid_a35507776f34379df5ed7971321e7aa79f97c257->{closure}()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 79
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/partial_List_Item_grid_a35507776f34379df5ed7971321e7aa79f97c257.php line 534
    ';
return $output38;
};

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

$output15 .= '
  ';
return $output15;
at partial_List_Item_grid_a35507776f34379df5ed7971321e7aa79f97c257->{closure}()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 299
    public function renderChildren()
    {
        if ($this->renderChildrenClosure !== null) {
            $closure = $this->renderChildrenClosure;
            return $closure();
        }
        return $this->viewHelperNode->evaluateChildNodes($this->renderingContext);
    }

at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->renderChildren()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3conf/ext/news/Classes/ViewHelpers/LinkViewHelper.php line 122
            }
        }

        $this->init();
        $linkedContent = $this->renderChildren();

        if ($newsItem === null) {
            return $linkedContent;
        }
at GeorgRinger\News\ViewHelpers\LinkViewHelper->render()
at call_user_func(array(object(GeorgRinger\News\ViewHelpers\LinkViewHelper), 'render'))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 260
     */
    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 /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 248
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 80
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke('GeorgRinger\\News\\ViewHelpers\\LinkViewHelper', array('additionalAttributes' => null, 'data' => null, 'aria' => null, 'class' => null, 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => 'Presseschau Myanmar 13. - 15. März 2021, Brennende Fabriken und harsche Reaktionen des Militärs', 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'newsItem' => object(GeorgRinger\News\Domain\Model\NewsDefault), 'settings' => array('cssFile' => 'EXT:news/Resources/Public/Css/news-basic.css', 'displayDummyIfNoMedia' => '1', 'format' => 'html', 'overrideFlexformSettingsIfEmpty' => 'cropMaxCharacters,dateField,timeRestriction,timeRestrictionHigh,archiveRestriction,orderBy,orderDirection,backPid,listPid,startingpoint,recursive,list.paginate.itemsPerPage,list.paginate.templatePath', 'allowEmptyStringsForOverwriteDemand' => '0', 'includeSubCategories' => '1', 'detailPidDetermination' => 'flexform, categories, default', 'defaultDetailPid' => '0', 'dateField' => 'datetime', 'cropMaxCharacters' => '150', 'orderBy' => 'datetime', 'orderDirection' => 'desc', 'topNewsFirst' => '0', 'orderByAllowed' => 'sorting,author,uid,title,teaser,author,tstamp,crdate,datetime,categories.title', 'facebookLocale' => 'en_US', 'googlePlusLocale' => 'en', 'demandClass' => '', 'categoryConjunction' => 'and', 'analytics' => array('social' => array('facebookLike' => '1', 'facebookShare' => '1', 'twitter' => '1')), 'link' => array('typesOpeningInNewWindow' => '2', 'hrDate' => array('day' => 'j', 'month' => 'n', 'year' => 'Y', '_typoScriptNodeValue' => '0')), 'search' => array('fields' => 'teaser,title,bodytext', 'splitSearchWord' => '0', 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '10', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3')), 'detail' => array('errorHandling' => 'showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404', 'checkPidOfNewsRecord' => '0', 'registerProperties' => 'keywords,title', 'showPrevNext' => '0', 'showSocialShareButtons' => '1', 'showMetaTags' => '1', 'pageTitle' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'properties' => 'title,teaser', '_typoScriptNodeValue' => '1'), 'media' => array('image' => array('lazyLoading' => 'lazy', 'maxWidth' => '1200', 'maxHeight' => '510c-125', 'lightbox' => array('enabled' => '1', 'class' => 'fancybox', 'width' => '1960m', 'height' => '800m', 'rel' => 'lightbox[myImageSet]')), 'video' => array('width' => '282', 'height' => '159'))), 'list' => array('media' => array('dummyImage' => 'EXT:site_package/Resources/Public/Images/Dummy_News2.jpg', 'image' => array('lazyLoading' => 'lazy', 'width' => '540', 'height' => '360c')), 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '15', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3'), 'rss' => array('channel' => array('title' => 'Dummy Title', 'description' => '', 'language' => 'en-gb', 'copyright' => 'TYPO3 News', 'generator' => 'TYPO3 EXT:news', 'link' => 'http://example.com', 'typeNum' => '9818'))), 'opengraph' => array('site_name' => '', 'type' => 'article', 'admins' => '', 'locale' => '', 'twitter' => array('card' => 'summary', 'site' => '', 'creator' => '')), 'settings' => array('media' => array('maxHeight' => '150c')), 'list2' => array('media' => array('image' => array('width' => '563', 'height' => '375'))), 'categories' => '', 'archiveRestriction' => '', 'timeRestriction' => '', 'timeRestrictionHigh' => '', 'topNewsRestriction' => '', 'startingpoint' => '29', 'recursive' => '250', 'selectedList' => '', 'singleNews' => '', 'previewHiddenRecords' => '2', 'backPid' => '', 'limit' => '', 'offset' => '', 'tags' => '', 'hidePagination' => '0', 'excludeAlreadyDisplayedNews' => '1', 'disableOverrideDemand' => '0', 'detailPid' => '763', 'listPid' => '', 'media' => array('maxWidth' => '', 'maxHeight' => ''), 'templateLayout' => '2'), 'uriOnly' => false, 'configuration' => array(), 'content' => '', 'section' => null), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 517
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $viewHelperClassName = get_called_class();
        return $renderingContext->getViewHelperInvoker()->invoke($viewHelperClassName, $arguments, $renderingContext, $renderChildrenClosure);
    }

    /**
     * Save the associated ViewHelper node in a static public class variable.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::renderStatic(array('additionalAttributes' => null, 'data' => null, 'aria' => null, 'class' => null, 'dir' => null, 'id' => null, 'lang' => null, 'style' => null, 'title' => 'Presseschau Myanmar 13. - 15. März 2021, Brennende Fabriken und harsche Reaktionen des Militärs', 'accesskey' => null, 'tabindex' => null, 'onclick' => null, 'newsItem' => object(GeorgRinger\News\Domain\Model\NewsDefault), 'settings' => array('cssFile' => 'EXT:news/Resources/Public/Css/news-basic.css', 'displayDummyIfNoMedia' => '1', 'format' => 'html', 'overrideFlexformSettingsIfEmpty' => 'cropMaxCharacters,dateField,timeRestriction,timeRestrictionHigh,archiveRestriction,orderBy,orderDirection,backPid,listPid,startingpoint,recursive,list.paginate.itemsPerPage,list.paginate.templatePath', 'allowEmptyStringsForOverwriteDemand' => '0', 'includeSubCategories' => '1', 'detailPidDetermination' => 'flexform, categories, default', 'defaultDetailPid' => '0', 'dateField' => 'datetime', 'cropMaxCharacters' => '150', 'orderBy' => 'datetime', 'orderDirection' => 'desc', 'topNewsFirst' => '0', 'orderByAllowed' => 'sorting,author,uid,title,teaser,author,tstamp,crdate,datetime,categories.title', 'facebookLocale' => 'en_US', 'googlePlusLocale' => 'en', 'demandClass' => '', 'categoryConjunction' => 'and', 'analytics' => array('social' => array('facebookLike' => '1', 'facebookShare' => '1', 'twitter' => '1')), 'link' => array('typesOpeningInNewWindow' => '2', 'hrDate' => array('day' => 'j', 'month' => 'n', 'year' => 'Y', '_typoScriptNodeValue' => '0')), 'search' => array('fields' => 'teaser,title,bodytext', 'splitSearchWord' => '0', 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '10', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3')), 'detail' => array('errorHandling' => 'showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404', 'checkPidOfNewsRecord' => '0', 'registerProperties' => 'keywords,title', 'showPrevNext' => '0', 'showSocialShareButtons' => '1', 'showMetaTags' => '1', 'pageTitle' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'properties' => 'title,teaser', '_typoScriptNodeValue' => '1'), 'media' => array('image' => array('lazyLoading' => 'lazy', 'maxWidth' => '1200', 'maxHeight' => '510c-125', 'lightbox' => array('enabled' => '1', 'class' => 'fancybox', 'width' => '1960m', 'height' => '800m', 'rel' => 'lightbox[myImageSet]')), 'video' => array('width' => '282', 'height' => '159'))), 'list' => array('media' => array('dummyImage' => 'EXT:site_package/Resources/Public/Images/Dummy_News2.jpg', 'image' => array('lazyLoading' => 'lazy', 'width' => '540', 'height' => '360c')), 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '15', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3'), 'rss' => array('channel' => array('title' => 'Dummy Title', 'description' => '', 'language' => 'en-gb', 'copyright' => 'TYPO3 News', 'generator' => 'TYPO3 EXT:news', 'link' => 'http://example.com', 'typeNum' => '9818'))), 'opengraph' => array('site_name' => '', 'type' => 'article', 'admins' => '', 'locale' => '', 'twitter' => array('card' => 'summary', 'site' => '', 'creator' => '')), 'settings' => array('media' => array('maxHeight' => '150c')), 'list2' => array('media' => array('image' => array('width' => '563', 'height' => '375'))), 'categories' => '', 'archiveRestriction' => '', 'timeRestriction' => '', 'timeRestrictionHigh' => '', 'topNewsRestriction' => '', 'startingpoint' => '29', 'recursive' => '250', 'selectedList' => '', 'singleNews' => '', 'previewHiddenRecords' => '2', 'backPid' => '', 'limit' => '', 'offset' => '', 'tags' => '', 'hidePagination' => '0', 'excludeAlreadyDisplayedNews' => '1', 'disableOverrideDemand' => '0', 'detailPid' => '763', 'listPid' => '', 'media' => array('maxWidth' => '', 'maxHeight' => ''), 'templateLayout' => '2'), 'uriOnly' => false, 'configuration' => array(), 'content' => '', 'section' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/partial_List_Item_grid_a35507776f34379df5ed7971321e7aa79f97c257.php line 568
);$arguments10['settings'] = $renderingContext->getVariableProvider()->getByPath('settings', $array13);
$array14 = array (
);$arguments10['title'] = $renderingContext->getVariableProvider()->getByPath('newsItem.title', $array14);

$output0 .= GeorgRinger\News\ViewHelpers\LinkViewHelper::renderStatic($arguments10, $renderChildrenClosure11, $renderingContext);

$output0 .= '
    
  <h3 class="headline" itemprop="headline">
at partial_List_Item_grid_a35507776f34379df5ed7971321e7aa79f97c257->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 327
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('List/Item_grid', null, array('newsItem' => object(GeorgRinger\News\Domain\Model\NewsDefault), 'settings' => array('cssFile' => 'EXT:news/Resources/Public/Css/news-basic.css', 'displayDummyIfNoMedia' => '1', 'format' => 'html', 'overrideFlexformSettingsIfEmpty' => 'cropMaxCharacters,dateField,timeRestriction,timeRestrictionHigh,archiveRestriction,orderBy,orderDirection,backPid,listPid,startingpoint,recursive,list.paginate.itemsPerPage,list.paginate.templatePath', 'allowEmptyStringsForOverwriteDemand' => '0', 'includeSubCategories' => '1', 'detailPidDetermination' => 'flexform, categories, default', 'defaultDetailPid' => '0', 'dateField' => 'datetime', 'cropMaxCharacters' => '150', 'orderBy' => 'datetime', 'orderDirection' => 'desc', 'topNewsFirst' => '0', 'orderByAllowed' => 'sorting,author,uid,title,teaser,author,tstamp,crdate,datetime,categories.title', 'facebookLocale' => 'en_US', 'googlePlusLocale' => 'en', 'demandClass' => '', 'categoryConjunction' => 'and', 'analytics' => array('social' => array('facebookLike' => '1', 'facebookShare' => '1', 'twitter' => '1')), 'link' => array('typesOpeningInNewWindow' => '2', 'hrDate' => array('day' => 'j', 'month' => 'n', 'year' => 'Y', '_typoScriptNodeValue' => '0')), 'search' => array('fields' => 'teaser,title,bodytext', 'splitSearchWord' => '0', 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '10', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3')), 'detail' => array('errorHandling' => 'showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404', 'checkPidOfNewsRecord' => '0', 'registerProperties' => 'keywords,title', 'showPrevNext' => '0', 'showSocialShareButtons' => '1', 'showMetaTags' => '1', 'pageTitle' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'properties' => 'title,teaser', '_typoScriptNodeValue' => '1'), 'media' => array('image' => array('lazyLoading' => 'lazy', 'maxWidth' => '1200', 'maxHeight' => '510c-125', 'lightbox' => array('enabled' => '1', 'class' => 'fancybox', 'width' => '1960m', 'height' => '800m', 'rel' => 'lightbox[myImageSet]')), 'video' => array('width' => '282', 'height' => '159'))), 'list' => array('media' => array('dummyImage' => 'EXT:site_package/Resources/Public/Images/Dummy_News2.jpg', 'image' => array('lazyLoading' => 'lazy', 'width' => '540', 'height' => '360c')), 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '15', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3'), 'rss' => array('channel' => array('title' => 'Dummy Title', 'description' => '', 'language' => 'en-gb', 'copyright' => 'TYPO3 News', 'generator' => 'TYPO3 EXT:news', 'link' => 'http://example.com', 'typeNum' => '9818'))), 'opengraph' => array('site_name' => '', 'type' => 'article', 'admins' => '', 'locale' => '', 'twitter' => array('card' => 'summary', 'site' => '', 'creator' => '')), 'settings' => array('media' => array('maxHeight' => '150c')), 'list2' => array('media' => array('image' => array('width' => '563', 'height' => '375'))), 'categories' => '', 'archiveRestriction' => '', 'timeRestriction' => '', 'timeRestrictionHigh' => '', 'topNewsRestriction' => '', 'startingpoint' => '29', 'recursive' => '250', 'selectedList' => '', 'singleNews' => '', 'previewHiddenRecords' => '2', 'backPid' => '', 'limit' => '', 'offset' => '', 'tags' => '', 'hidePagination' => '0', 'excludeAlreadyDisplayedNews' => '1', 'disableOverrideDemand' => '0', 'detailPid' => '763', 'listPid' => '', 'media' => array('maxWidth' => '', 'maxHeight' => ''), 'templateLayout' => '2'), 'iterator' => array('index' => 5, 'cycle' => 6, 'total' => 15, 'isFirst' => false, 'isLast' => false, 'isEven' => true, 'isOdd' => false)), false)
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 169
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => null, 'partial' => 'List/Item_grid', 'delegate' => null, 'renderable' => null, 'arguments' => array('newsItem' => object(GeorgRinger\News\Domain\Model\NewsDefault), 'settings' => array('cssFile' => 'EXT:news/Resources/Public/Css/news-basic.css', 'displayDummyIfNoMedia' => '1', 'format' => 'html', 'overrideFlexformSettingsIfEmpty' => 'cropMaxCharacters,dateField,timeRestriction,timeRestrictionHigh,archiveRestriction,orderBy,orderDirection,backPid,listPid,startingpoint,recursive,list.paginate.itemsPerPage,list.paginate.templatePath', 'allowEmptyStringsForOverwriteDemand' => '0', 'includeSubCategories' => '1', 'detailPidDetermination' => 'flexform, categories, default', 'defaultDetailPid' => '0', 'dateField' => 'datetime', 'cropMaxCharacters' => '150', 'orderBy' => 'datetime', 'orderDirection' => 'desc', 'topNewsFirst' => '0', 'orderByAllowed' => 'sorting,author,uid,title,teaser,author,tstamp,crdate,datetime,categories.title', 'facebookLocale' => 'en_US', 'googlePlusLocale' => 'en', 'demandClass' => '', 'categoryConjunction' => 'and', 'analytics' => array('social' => array('facebookLike' => '1', 'facebookShare' => '1', 'twitter' => '1')), 'link' => array('typesOpeningInNewWindow' => '2', 'hrDate' => array('day' => 'j', 'month' => 'n', 'year' => 'Y', '_typoScriptNodeValue' => '0')), 'search' => array('fields' => 'teaser,title,bodytext', 'splitSearchWord' => '0', 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '10', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3')), 'detail' => array('errorHandling' => 'showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404', 'checkPidOfNewsRecord' => '0', 'registerProperties' => 'keywords,title', 'showPrevNext' => '0', 'showSocialShareButtons' => '1', 'showMetaTags' => '1', 'pageTitle' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'properties' => 'title,teaser', '_typoScriptNodeValue' => '1'), 'media' => array('image' => array('lazyLoading' => 'lazy', 'maxWidth' => '1200', 'maxHeight' => '510c-125', 'lightbox' => array('enabled' => '1', 'class' => 'fancybox', 'width' => '1960m', 'height' => '800m', 'rel' => 'lightbox[myImageSet]')), 'video' => array('width' => '282', 'height' => '159'))), 'list' => array('media' => array('dummyImage' => 'EXT:site_package/Resources/Public/Images/Dummy_News2.jpg', 'image' => array('lazyLoading' => 'lazy', 'width' => '540', 'height' => '360c')), 'paginate' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '15', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3'), 'rss' => array('channel' => array('title' => 'Dummy Title', 'description' => '', 'language' => 'en-gb', 'copyright' => 'TYPO3 News', 'generator' => 'TYPO3 EXT:news', 'link' => 'http://example.com', 'typeNum' => '9818'))), 'opengraph' => array('site_name' => '', 'type' => 'article', 'admins' => '', 'locale' => '', 'twitter' => array('card' => 'summary', 'site' => '', 'creator' => '')), 'settings' => array('media' => array('maxHeight' => '150c')), 'list2' => array('media' => array('image' => array('width' => '563', 'height' => '375'))), 'categories' => '', 'archiveRestriction' => '', 'timeRestriction' => '', 'timeRestrictionHigh' => '', 'topNewsRestriction' => '', 'startingpoint' => '29', 'recursive' => '250', 'selectedList' => '', 'singleNews' => '', 'previewHiddenRecords' => '2', 'backPid' => '', 'limit' => '', 'offset' => '', 'tags' => '', 'hidePagination' => '0', 'excludeAlreadyDisplayedNews' => '1', 'disableOverrideDemand' => '0', 'detailPid' => '763', 'listPid' => '', 'media' => array('maxWidth' => '', 'maxHeight' => ''), 'templateLayout' => '2'), 'iterator' => array('index' => 5, 'cycle' => 6, 'total' => 15, 'isFirst' => false, 'isLast' => false, 'isEven' => true, 'isOdd' => false)), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/News_action_list_fa2ade97a41aa1322f739e06f7fa8445bcd73c10.php line 6766
$array250 = array (
);$array247['iterator'] = $renderingContext->getVariableProvider()->getByPath('iterator', $array250);
$arguments245['arguments'] = $array247;

$output244 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments245, $renderChildrenClosure246, $renderingContext);

$output244 .= '
                        ';
return $output244;
at News_action_list_fa2ade97a41aa1322f739e06f7fa8445bcd73c10->{closure}()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/ViewHelpers/ForViewHelper.php line 145
                $templateVariableContainer->add($arguments['iteration'], $iterationData);
                $iterationData['index']++;
                $iterationData['cycle']++;
            }
            $output .= $renderChildrenClosure();
            $templateVariableContainer->remove($arguments['as']);
            if (isset($arguments['key'])) {
                $templateVariableContainer->remove($arguments['key']);
            }
at TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic(array('each' => object(TYPO3\CMS\Extbase\Persistence\Generic\QueryResult), 'as' => 'newsItem', 'key' => null, 'reverse' => false, 'iteration' => 'iterator'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/News_action_list_fa2ade97a41aa1322f739e06f7fa8445bcd73c10.php line 6783
);$arguments241['each'] = $renderingContext->getVariableProvider()->getByPath('pagination.paginator.paginatedItems', $array243);
$arguments241['as'] = 'newsItem';
$arguments241['iteration'] = 'iterator';

$output229 .= TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic($arguments241, $renderChildrenClosure242, $renderingContext);

$output229 .= '
                        </div>
                        
at News_action_list_fa2ade97a41aa1322f739e06f7fa8445bcd73c10->{closure}()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 137
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            }
            if ($conditionClosures[$elseNodeIndex]()) {
                return $elseNodeClosure();
            }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 83
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/News_action_list_fa2ade97a41aa1322f739e06f7fa8445bcd73c10.php line 6851
     ';
return $output229;
};

$output214 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments216, $renderChildrenClosure217, $renderingContext);

$output214 .= '
   </div>
     ';
at News_action_list_fa2ade97a41aa1322f739e06f7fa8445bcd73c10->{closure}()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 79
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/News_action_list_fa2ade97a41aa1322f739e06f7fa8445bcd73c10.php line 6859
     ';
return $output214;
};

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

$output3 .= '
   
   ';
at News_action_list_fa2ade97a41aa1322f739e06f7fa8445bcd73c10->{closure}()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 79
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/News_action_list_fa2ade97a41aa1322f739e06f7fa8445bcd73c10.php line 9133
  ';
return $output836;
};

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

$output0 .= '
 <!--TYPO3SEARCH_begin-->
';
at News_action_list_fa2ade97a41aa1322f739e06f7fa8445bcd73c10->section_040f06fd774092478d450774f5ba30c5da78acc8(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 258
                    new InvalidSectionException('Section "' . $sectionName . '" does not exist.')
                );
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('content', array(), false)
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $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 /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/layout_General_html_721b73e93f62c2b422e848e1466025d8350302a9.php line 61
$arguments1['contentAs'] = NULL;
$arguments1['debug'] = true;
$arguments1['section'] = 'content';

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

$output0 .= '
</div>
';
at layout_General_html_721b73e93f62c2b422e848e1466025d8350302a9->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 200
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 598
                // returned in their controller actions. The header, added below, may gets overwritten in
                // the Extbase bootstrap, depending on the context (FE/BE) and TypoScript configuration.
                $response = $response->withHeader('Content-Type', 'application/json; charset=utf-8');
            }
            $body->write($this->view->render());
        } elseif (is_string($actionResult) && $actionResult !== '') {
            $body->write($actionResult);
        } elseif (is_object($actionResult) && method_exists($actionResult, '__toString')) {
            $body->write((string)$actionResult);
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod(object(TYPO3\CMS\Extbase\Mvc\Request))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 488
        $this->view = $this->resolveView();
        if ($this->view !== null && method_exists($this, 'initializeView')) {
            $this->initializeView($this->view);
        }
        $response = $this->callActionMethod($request);
        $this->renderAssetsForRequest($request);

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

    /**
     * This request handler can handle any web request.
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 165
        }

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

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

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'tt_content.list.20.news_pi1')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'gkh_rss_import_pi1' => '< plugin.tx_gkhrssimport_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')), 'tt_content.list.20.news_pi1', 'news_pi1')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 2427, 'pid' => 764, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1666623720, 'crdate' => 1647959255, 'cruser_id' => 31, 'hidden' => 0, 'sorting' => 256, 'CType' => 'list', 'header' => 'Liste', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => null, 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'news_pi1', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.categoryConjunction"> <value index="vDEF">and</value> </field> <field index="settings.categories"> <value index="vDEF"></value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">1</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">29</value> </field> <field index="settings.recursive"> <value index="vDEF">250</value> </field> <field index="settings.selectedList"> <value index="vDEF"></value> </field> <field index="settings.dateField"> <value index="vDEF"></value> </field> <field index="settings.singleNews"> <value index="vDEF"></value> </field> <field index="settings.previewHiddenRecords"> <value index="vDEF">2</value> </field> <field index="settings.orderDirection"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;list;News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.backPid"> <value index="vDEF"></value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF">15</value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">1</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> <field index="settings.detailPid"> <value index="vDEF">763</value> </field> <field index="settings.listPid"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">2</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"header_position":null,"date":null,"header_link":null,"subheader":null,"list_type":null,"pi_flexform":null,"layout":null,"frame_class":null,"space_before_class":null,"space_after_class":null,"sectionIndex":null,"linkToTop":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null,"editlock":null,"categories":null,"rowDescription":null,"tx_gridelements_container":null}', 'categories' => 0, 'selected_categories' => null, 'category_field' => '', 'tx_news_related_news' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '0', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'table_class' => '', 'l10n_source' => 0, 'l10n_state' => null, 'tx_sgcontentlink_contentlink' => '', 'filelink_sorting_direction' => '', 'gridelements_shortcut_page_order_by' => 0), 'typoscriptObjectPath' => 'tt_content.list.20.news_pi1', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/Standard_action_list_ce7fb20ea45343ec6240958ab80528654bb7e6d5.php line 66
$array11 = array (
);$arguments7['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array11);
$arguments7['table'] = 'tt_content';
$renderChildrenClosure8 = ($arguments7['data'] !== null) ? function() use ($arguments7) { return $arguments7['data']; } : $renderChildrenClosure8;
$output6 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= '
    ';
return $output6;
at Standard_action_list_ce7fb20ea45343ec6240958ab80528654bb7e6d5->{closure}()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 79
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/Standard_action_list_ce7fb20ea45343ec6240958ab80528654bb7e6d5.php line 91
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

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

$output0 .= '

';
at Standard_action_list_ce7fb20ea45343ec6240958ab80528654bb7e6d5->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 258
                    new InvalidSectionException('Section "' . $sectionName . '" does not exist.')
                );
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('Main', array(), true)
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $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 /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/layout_Default_html_870c0e9bf233581e7e0bca929a72176a21fc2626.php line 1143
     ),
     $renderingContext
    );

$output3 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments45, $renderChildrenClosure46, $renderingContext);

$output3 .= '
                ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_870c0e9bf233581e7e0bca929a72176a21fc2626->{closure}()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 79
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/layout_Default_html_870c0e9bf233581e7e0bca929a72176a21fc2626.php line 1665
        ';
return $output65;
};

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

$output0 .= '

';
at layout_Default_html_870c0e9bf233581e7e0bca929a72176a21fc2626->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 200
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 340
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1960m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="fancybox-{field:uid}" data-caption="{file:current:title}" title="{file:current:title}"'))), '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('ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'gkh_rss_import_pi1' => '< plugin.tx_gkhrssimport_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'))))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // 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/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1960m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="fancybox-{field:uid}" data-caption="{file:current:title}" title="{file:current:title}"'))), '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('ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'gkh_rss_import_pi1' => '< plugin.tx_gkhrssimport_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'))))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1960m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="fancybox-{field:uid}" data-caption="{file:current:title}" title="{file:current:title}"'))), '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('ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'gkh_rss_import_pi1' => '< plugin.tx_gkhrssimport_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'))), 'lib.contentElement')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 746
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1960m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="fancybox-{field:uid}" data-caption="{file:current:title}" title="{file:current:title}"'))), '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('ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'gkh_rss_import_pi1' => '< plugin.tx_gkhrssimport_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'))), 'list')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 45
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'postUserFunc' => 'SGalinski\\SgContentlink\\UserFunc\\ContentElementRendering->wrapContentLinkAroundContent'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1198', 'maxGalleryWidthInText' => '1200', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image'))), '20.' => array('1.' => array('imageLinkWrap.' => array('linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-lightbox="{field:uid}"')))))), '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('ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'gkh_rss_import_pi1' => '< plugin.tx_gkhrssimport_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'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_sfeventmgt_domain_model_event,pages', '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')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pievent', 'vendorName' => 'DERHANSEN', 'controller' => 'Event', 'action' => 'detail', 'switchableControllerActions.' => array('Event.' => array('detail')), 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1'))), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', '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')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pievent', 'vendorName' => 'DERHANSEN', 'controller' => 'Event', 'action' => 'detail', 'switchableControllerActions.' => array('Event.' => array('detail')), 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1198', 'maxGalleryWidthInText' => '1200', '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' => '1198', 'maxGalleryWidthInText' => '1200', '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'), 'where' => '{#sectionIndex} = 1', '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')))), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/', 'EXT:bootstrap_grids/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/', 'EXT:bootstrap_grids/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children'))), '20.' => array('10.' => array('setup.' => array('accordion.' => array('columns.' => array('101.' => array('renderObj.' => array('10.' => array('wrap.' => array('override' => '<div class="panel-heading"><h4 class="panel-title"><a role="button" data-toggle="collapse" data-parent="#accordion-{field:tx_gridelements_container}" href="#collapse-{field:uid}" aria-expanded="true" aria-controls="collapse-{field:uid}" class="accordion-toggle">|</a></h4></div><div id="collapse-{field:uid}" class="panel-collapse in collapse show" role="tabpanel"><div class="panel-body">'))))))))))))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'postUserFunc' => 'SGalinski\\SgContentlink\\UserFunc\\ContentElementRendering->wrapContentLinkAroundContent'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1198', 'maxGalleryWidthInText' => '1200', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image'))), '20.' => array('1.' => array('imageLinkWrap.' => array('linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-lightbox="{field:uid}"')))))), '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('ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'gkh_rss_import_pi1' => '< plugin.tx_gkhrssimport_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'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_sfeventmgt_domain_model_event,pages', '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')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pievent', 'vendorName' => 'DERHANSEN', 'controller' => 'Event', 'action' => 'detail', 'switchableControllerActions.' => array('Event.' => array('detail')), 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1'))), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', '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')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pievent', 'vendorName' => 'DERHANSEN', 'controller' => 'Event', 'action' => 'detail', 'switchableControllerActions.' => array('Event.' => array('detail')), 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1198', 'maxGalleryWidthInText' => '1200', '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' => '1198', 'maxGalleryWidthInText' => '1200', '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'), 'where' => '{#sectionIndex} = 1', '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')))), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/', 'EXT:bootstrap_grids/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/', 'EXT:bootstrap_grids/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children'))), '20.' => array('10.' => array('setup.' => array('accordion.' => array('columns.' => array('101.' => array('renderObj.' => array('10.' => array('wrap.' => array('override' => '<div class="panel-heading"><h4 class="panel-title"><a role="button" data-toggle="collapse" data-parent="#accordion-{field:tx_gridelements_container}" href="#collapse-{field:uid}" aria-expanded="true" aria-controls="collapse-{field:uid}" class="accordion-toggle">|</a></h4></div><div id="collapse-{field:uid}" class="panel-collapse in collapse show" role="tabpanel"><div class="panel-body">'))))))))))))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'postUserFunc' => 'SGalinski\\SgContentlink\\UserFunc\\ContentElementRendering->wrapContentLinkAroundContent'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1198', 'maxGalleryWidthInText' => '1200', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image'))), '20.' => array('1.' => array('imageLinkWrap.' => array('linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-lightbox="{field:uid}"')))))), '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('ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'gkh_rss_import_pi1' => '< plugin.tx_gkhrssimport_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'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_sfeventmgt_domain_model_event,pages', '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')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pievent', 'vendorName' => 'DERHANSEN', 'controller' => 'Event', 'action' => 'detail', 'switchableControllerActions.' => array('Event.' => array('detail')), 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1'))), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', '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')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pievent', 'vendorName' => 'DERHANSEN', 'controller' => 'Event', 'action' => 'detail', 'switchableControllerActions.' => array('Event.' => array('detail')), 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1198', 'maxGalleryWidthInText' => '1200', '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' => '1198', 'maxGalleryWidthInText' => '1200', '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'), 'where' => '{#sectionIndex} = 1', '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')))), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/', 'EXT:bootstrap_grids/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/', 'EXT:bootstrap_grids/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children'))), '20.' => array('10.' => array('setup.' => array('accordion.' => array('columns.' => array('101.' => array('renderObj.' => array('10.' => array('wrap.' => array('override' => '<div class="panel-heading"><h4 class="panel-title"><a role="button" data-toggle="collapse" data-parent="#accordion-{field:tx_gridelements_container}" href="#collapse-{field:uid}" aria-expanded="true" aria-controls="collapse-{field:uid}" class="accordion-toggle">|</a></h4></div><div id="collapse-{field:uid}" class="panel-collapse in collapse show" role="tabpanel"><div class="panel-body">'))))))))))), 'tt_content')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 746
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'postUserFunc' => 'SGalinski\\SgContentlink\\UserFunc\\ContentElementRendering->wrapContentLinkAroundContent'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1198', 'maxGalleryWidthInText' => '1200', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image'))), '20.' => array('1.' => array('imageLinkWrap.' => array('linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-lightbox="{field:uid}"')))))), '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('ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'gkh_rss_import_pi1' => '< plugin.tx_gkhrssimport_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'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_sfeventmgt_domain_model_event,pages', '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')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pievent', 'vendorName' => 'DERHANSEN', 'controller' => 'Event', 'action' => 'detail', 'switchableControllerActions.' => array('Event.' => array('detail')), 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1'))), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', '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')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pievent', 'vendorName' => 'DERHANSEN', 'controller' => 'Event', 'action' => 'detail', 'switchableControllerActions.' => array('Event.' => array('detail')), 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1198', 'maxGalleryWidthInText' => '1200', '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' => '1198', 'maxGalleryWidthInText' => '1200', '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'), 'where' => '{#sectionIndex} = 1', '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')))), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/', 'EXT:bootstrap_grids/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/', 'EXT:bootstrap_grids/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children'))), '20.' => array('10.' => array('setup.' => array('accordion.' => array('columns.' => array('101.' => array('renderObj.' => array('10.' => array('wrap.' => array('override' => '<div class="panel-heading"><h4 class="panel-title"><a role="button" data-toggle="collapse" data-parent="#accordion-{field:tx_gridelements_container}" href="#collapse-{field:uid}" aria-expanded="true" aria-controls="collapse-{field:uid}" class="accordion-toggle">|</a></h4></div><div id="collapse-{field:uid}" class="panel-collapse in collapse show" role="tabpanel"><div class="panel-body">'))))))))))), '')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 96
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $registerField;
                        $this->cObj->lastChanged($row['tstamp'] ?? 0);
                        $cObj->start($row, $conf['table'], $this->request);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), '20')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $contentObjects[] = $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $contentObjects;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSeparated(array('LOAD_REGISTER', '10.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), '')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 693
    {
        if (!is_array($setup)) {
            return '';
        }
        return implode('', $this->cObjGetSeparated($setup, $addKey));
    }

    /**
     * Rendering of a "numerical array" of cObjects from TypoScript
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('LOAD_REGISTER', '10.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 43
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = $this->cObj->stdWrapValue('wrap', $conf ?? []);
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('LOAD_REGISTER', '10.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('LOAD_REGISTER', '10.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('LOAD_REGISTER', '10.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'lib.dynamicContent')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var,iframe', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '0'), 'parseFunc_RTE.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var,iframe,object,param,embed,iframe', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2', 'tags.' => array('img.' => array('fixAttrib.' => array('class.' => array('default' => 'img-fluid'))))), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '0', 'externalBlocks' => 'iframe', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var,iframe', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'contenttable', 'always' => '1', 'list' => 'contenttable')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1'), 'relatedByFirstCategory' => 'USER', 'relatedByFirstCategory.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('list')), 'settings.' => array('cssFile' => 'EXT:news/Resources/Public/Css/news-basic.css', 'displayDummyIfNoMedia' => '1', 'format' => 'html', 'overrideFlexformSettingsIfEmpty' => 'cropMaxCharacters,dateField,timeRestriction,timeRestrictionHigh,archiveRestriction,orderBy,orderDirection,backPid,listPid,startingpoint,recursive,list.paginate.itemsPerPage,list.paginate.templatePath,detailPid', 'allowEmptyStringsForOverwriteDemand' => '0', 'includeSubCategories' => '0', 'analytics.' => array('social.' => array('facebookLike' => '1', 'facebookShare' => '1', 'twitter' => '1')), 'detailPidDetermination' => 'flexform, categories, default', 'defaultDetailPid' => '0', 'dateField' => 'datetime', 'link.' => array('typesOpeningInNewWindow' => '2', 'hrDate' => '0', 'hrDate.' => array('day' => 'j', 'month' => 'n', 'year' => 'Y')), 'cropMaxCharacters' => '150', 'orderBy' => 'datetime', 'orderDirection' => 'desc', 'topNewsFirst' => '0', 'orderByAllowed' => 'sorting,author,uid,title,teaser,author,tstamp,crdate,datetime,categories.title', 'facebookLocale' => 'en_US', 'googlePlusLocale' => 'en', 'demandClass' => '', 'search.' => array('fields' => 'teaser,title,bodytext', 'splitSearchWord' => '0', 'paginate.' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '10', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3')), 'detail.' => array('errorHandling' => 'showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404', 'checkPidOfNewsRecord' => '0', 'registerProperties' => 'keywords,title', 'showPrevNext' => '0', 'showSocialShareButtons' => '1', 'showMetaTags' => '1', 'media.' => array('image.' => array('lazyLoading' => 'lazy', 'maxWidth' => '1200', 'maxHeight' => '510c-125', 'lightbox.' => array('enabled' => '1', 'class' => 'fancybox', 'width' => '1960m', 'height' => '800m', 'rel' => 'lightbox[myImageSet]')), 'video.' => array('width' => '282', 'height' => '159')), 'pageTitle' => '1', 'pageTitle.' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'properties' => 'title,teaser')), 'list.' => array('media.' => array('dummyImage' => 'EXT:site_package/Resources/Public/Images/Dummy_News2.jpg', 'image.' => array('lazyLoading' => 'lazy', 'width' => '540', 'height' => '360c')), 'paginate.' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '10', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3'), 'rss.' => array('channel.' => array('title' => 'Dummy Title', 'description' => '', 'language' => 'en-gb', 'copyright' => 'TYPO3 News', 'generator' => 'TYPO3 EXT:news', 'link' => 'http://example.com', 'typeNum' => '9818'))), 'opengraph.' => array('site_name' => '', 'type' => 'article', 'admins' => '', 'locale' => '', 'twitter.' => array('card' => 'summary', 'site' => '', 'creator' => '')), 'settings.' => array('media.' => array('maxHeight' => '150c')), 'list2.' => array('media.' => array('image.' => array('width' => '563', 'height' => '375'))), 'categoryConjunction' => 'or', 'excludeAlreadyDisplayedNews' => '1', 'relatedView' => '1', 'templateLayout' => '3', 'detailPid' => '763', 'useStdWrap' => 'categories', 'categories.' => array('current' => '1'), 'startingpoint' => '29', 'limit' => '4'))), 'contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1960m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="fancybox-{field:uid}" data-caption="{file:current:title}" title="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')))), 'dynamicContent' => 'COA', 'dynamicContent.' => array('LOAD_REGISTER', '10.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'tt_content.' => array('shortcut.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'))), 'parseFunc_powermail.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target')), 'forceAbsoluteUrl' => '1')), 'link.' => array('typolink.' => array('forceAbsoluteUrl' => '1'))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var,iframe', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var,iframe', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'contenttable', 'always' => '1', 'list' => 'contenttable')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'stdheader.' => array('stdWrap.' => array('dataWrap' => '|'), '10.' => array('1.' => array('dataWrap' => '<h1>|</h1>', 'htmlSpecialChars' => '1'), '2.' => array('dataWrap' => '<h2 class="h2">|</h2>', 'htmlSpecialChars' => '2'), '3.' => array('dataWrap' => '<h3>|</h3>'), '4.' => array('dataWrap' => '<h4>|</h4>'), '5.' => array('dataWrap' => '<h5>|</h5>'), 'setCurrent.' => array('htmlSpecialChars' => '1'), 'default.' => array('htmlSpecialChars' => '1'))), 'logo' => 'IMAGE', 'logo.' => array('file' => 'EXT:site_package/Resources/Public/Images/Asienhaus_Logo+Welle_Asienhaus.svg', 'params' => 'class="logo-stiftung-asienhaus"', 'altText' => 'Logo Stiftung Asienhaus', 'stdWrap.' => array('typolink.' => array('parameter' => 'https://www.asienhaus.de', 'ATagParams' => 'class="brand" title= "Zur Startseite der Stiftung Asienhaus"', 'extTarget' => '_top'))), 'spenden-button' => 'IMAGE', 'spenden-button.' => array('file' => 'EXT:site_package/Resources/Public/Images/Asienhaus_Button_Spenden.svg', 'params' => 'style="width:140px !important; height:140px !important;"', 'altText' => 'Spenden für die Stiftung Asienhaus', 'stdWrap.' => array('typolink.' => array('parameter' => './spenden', 'ATagParams' => 'title= "Spenden für die Stiftung Asienhaus"', 'extTarget' => '_top'))), 'searchbox' => 'COA_INT', 'searchbox.' => array('USER_INT', '10.' => array('userFunc' => 'Tpwd\\KeSearch\\Plugins\\SearchboxPlugin->main', 'view.' => array('templateRootPaths.' => array('EXT:ke_search/Resources/Private/Templates/', 'EXT:site_package/Resources/Private/Templates/ke_search/'), 'partialRootPaths.' => array('EXT:ke_search/Resources/Private/Partials/', 'EXT:site_package/Resources/Private/Partials/ke_search/'), 'layoutRootPaths.' => array('EXT:ke_search/Resources/Private/Layouts/', 'EXT:site_package/Resources/Private/Layouts/ke_search/')), 'cssFile' => 'EXT:site_package/Resources/Public/Css/ke_search.css', 'additionalAllowedPiVars' => '', 'searchWordParameter' => 'tx_kesearch_pi1[sword]', 'resultPage' => '790', 'renderMethod' => 'static')), 'contentRight' => '', 'footer1' => 'RECORDS', 'footer1.' => array('tables' => 'tt_content', 'source' => '2364, 2363, 2365'), 'footer2' => 'RECORDS', 'footer2.' => array('tables' => 'tt_content', 'source' => '2369,2368,2366'), 'footer3' => 'HMENU', 'footer3.' => array('wrap' => '<h3>Navigation</h3><ul class="nav nav-list">|</ul>', 'special' => 'list', 'special.' => array('value' => '765, 766, 767,745'), 'TMENU', '1.' => array('expAll' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="nav-item">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="nav-item active">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')))), 'footer3social' => 'COA', 'footer3social.' => array('wrap' => '<div class="footer3social frame-space-after-small">|</div>', 'TEXT', '5.' => array('value' => ' <a href="http://www.facebook.com/Asienhaus" target="_blank"><div id="facebook"></div></a> '), 'TEXT', '6.' => array('value' => ' <a href="http://www.twitter.com/asienhaus" target="_blank"> <div id="twitter"></div></a> '), 'TEXT', '7.' => array('value' => ' <a href="https://www.youtube.com/user/asienhaus/" target="_blank"> <div id="youtube"></div></a> ')), 'footer3impressum' => 'HMENU', 'footer3impressum.' => array('wrap' => '<ul class="nav nav-list">|</ul>', 'special' => 'list', 'special.' => array('value' => '941,940'), 'TMENU', '1.' => array('expAll' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="nav-item">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="nav-item active">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')))), 'footer3cookies' => 'COA', 'footer3cookies.' => array('TEXT', '8.' => array('value' => ' <ul class="nav nav-list"><li class="nav-item"><a href="javascript:UC_UI.showSecondLayer();">Cookie-Einstellungen</a></li></ul> ')), 'footer4laender' => 'HMENU', 'footer4laender.' => array('wrap' => '<h3>&nbsp;</h3><ul class="nav nav-list">|</ul>', 'special' => 'list', 'special.' => array('value' => '751,779,780,782,783,784,786,789'), 'TMENU', '1.' => array('expAll' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="nav-item">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="nav-item active">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')))), 'topNavigation' => 'HMENU', 'topNavigation.' => array('special' => 'list', 'special.' => array('value' => '742,743,744,745'), 'wrap' => '<div class="top-navigation">|</div>', 'TMENU', '1.' => array('NO.' => array('linkWrap' => '| |*| &nbsp;&#124;&nbsp; |*|'))), 'breadcrumbTrail' => 'HMENU', 'breadcrumbTrail.' => array('special' => 'rootline', 'special.' => array('range' => '1|-1'), 'excludeUidList' => '750', 'wrap' => '<div class="breadcrumbtrail">|</div>', 'TMENU', '1.' => array('NO.' => array('stdWrap.' => array('field' => 'nav_title // title'), 'ATagTitle.' => array('field' => 'nav_title // title'), 'linkWrap' => '| |*| &nbsp;&nbsp;&nbsp;&nbsp; |*|'), 'CUR' => '1', 'CUR.' => array('doNotLinkIt' => '1', 'stdWrap.' => array('field' => 'nav_title // title'), 'linkWrap' => '| |*| &nbsp;&nbsp;&nbsp;&nbsp;<em>|</em>|'))), 'megamenu' => 'COA', 'megamenu.' => array('HMENU', '20.' => array('wrap' => '<li class="nav-item dropdown megamenu-li"> | </li>', 'special' => 'directory', 'special.' => array('value' => '761'), 'TMENU', '1.' => array('expAll' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="nav-item">|</li>', 'ATagParams' => 'class="nav-link"'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="nav-item active">|</li>', 'ATagParams' => 'class="nav-link"', 'linkWrap' => '|<span class="sr-only">(current)</span>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="nav-item active">|</li>', 'ATagParams' => 'class="nav-link"', 'linkWrap' => '|<span class="sr-only">(current)</span>'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown megamenu-li"> | </li>', 'ATagParams' => 'class="nav-link dropdown-toggle" href="" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown megamenu-li"> | </li>', 'ATagParams' => 'class="nav-link dropdown-toggle" href="" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"'), 'CURIFSUB' => '1', 'CURIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown megamenu-li"> | </li>', 'ATagParams' => 'class="nav-link dropdown-toggle" href="" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"')), 'TMENU', '2.' => array('expAll' => '1', 'wrap' => '<div class="dropdown-menu megamenu"><div class="row"> | </div></div>', 'NO' => '1', 'NO.' => array('linkWrap' => '<div class="div-nav-title">|</div>', 'ATagBeforeWrap' => '<div class="div-nav-title">|</div>', 'allWrap' => '<div class="col-xs-12 col-sm-6 col-lg-3 div-nav"> | </div>', 'ATagParams' => 'class="nav-title"', 'ATagTitle.' => array('field' => 'title')), 'IFSUB' => '1', 'IFSUB.' => array('linkWrap' => '<div class="div-nav-title"> | </div>', 'ATagBeforeWrap' => '<div class="div-nav-title"> | </div>', 'ATagParams' => 'class="nav-title"', 'wrapItemAndSub' => '<div class="col-xs-12 col-sm-6 col-lg-3 div-nav">|</div>')), 'TMENU', '3.' => array('expAll' => '1', 'wrap' => '|', 'NO' => '1', 'NO.' => array('linkWrap' => '<div class="div-nav-content">|</div>', 'ATagBeforeWrap' => '<div class="div-nav-content">|</div>', 'ATagParams' => 'class="nav-content"')))), 'nav_links' => 'HMENU', 'nav_links.' => array('wrap' => '<ul class="nav flex-column flex-nowrap overflow-hidden order-1">|</ul>', 'special' => 'directory', 'special.' => array('value' => '764'), 'TMENU', '1.' => array('expAll' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="nav-item level1">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagParams' => 'class="nav-link normal"'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="nav-item level1 sub active ifsub">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagParams' => 'class="nav-link ifsub" id="submenu1"', 'linkWrap' => '|<div class="collapse ifsub" id="submenu1" aria-expanded="false"><ul class="flex-column nav linkwrap">'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="nav-item level1 sub active cur">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagParams' => 'class="nav-link cur" id="submenu1"'), 'CURIFSUB' => '1', 'CURIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item level1 sub active curifsub">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagParams' => 'class="nav-link curifsub" id="submenu1"', 'linkWrap' => '|<div class="collapse show curifsub" id="submenu1" aria-expanded="false"><ul class="flex-column nav cur linkwrap">'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item level1 sub active actifsub">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagParams' => 'class="nav-link actifsub" id="submenu1"', 'linkWrap' => '|<div class="collapse show curifsub" id="submenu1" aria-expanded="false"><ul class="flex-column nav cur linkwrap">')), 'TMENU', '2.' => array('expAll' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="nav-item level2 no">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagParams' => 'class="nav-link text-wrap"'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="nav-item level1 sub active ifsub">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagParams' => 'class="nav-link ifsub" id="submenu1"', 'linkWrap' => '|<div class="collapse ifsub" id="submenu1" aria-expanded="false"><ul class="flex-column nav linkwrap">'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="nav-item level2 active cur">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagParams' => 'class="nav-link cur" id="submenu1"'), 'CURIFSUB' => '1', 'CURIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item level1 sub active curifsub">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagParams' => 'class="nav-link curifsub" id="submenu1"', 'linkWrap' => '|<div class="collapse show curifsub" id="submenu1" aria-expanded="false"><ul class="flex-column nav cur linkwrap">'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item level1 sub active actifsub">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagParams' => 'class="nav-link actifsub" id="submenu1"', 'linkWrap' => '|<div class="collapse show curifsub" id="submenu1" aria-expanded="false"><ul class="flex-column nav cur linkwrap">'), 'wrap' => '|</ul></div>', 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="nav-item level2 active">|</li>'))), 'categoryMenu' => 'USER', 'categoryMenu.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'action' => 'category', 'switchableControllerActions.' => array('Category.' => array('list')), 'settings.' => array('cssFile' => 'EXT:news/Resources/Public/Css/news-basic.css', 'displayDummyIfNoMedia' => '1', 'format' => 'html', 'overrideFlexformSettingsIfEmpty' => 'cropMaxCharacters,dateField,timeRestriction,timeRestrictionHigh,archiveRestriction,orderBy,orderDirection,backPid,listPid,startingpoint,recursive,list.paginate.itemsPerPage,list.paginate.templatePath', 'allowEmptyStringsForOverwriteDemand' => '0', 'includeSubCategories' => '0', 'analytics.' => array('social.' => array('facebookLike' => '1', 'facebookShare' => '1', 'twitter' => '1')), 'detailPidDetermination' => 'flexform, categories, default', 'defaultDetailPid' => '0', 'dateField' => 'datetime', 'link.' => array('typesOpeningInNewWindow' => '2', 'hrDate' => '0', 'hrDate.' => array('day' => 'j', 'month' => 'n', 'year' => 'Y')), 'cropMaxCharacters' => '150', 'orderBy' => 'datetime', 'orderDirection' => 'desc', 'topNewsFirst' => '0', 'orderByAllowed' => 'sorting,author,uid,title,teaser,author,tstamp,crdate,datetime,categories.title', 'facebookLocale' => 'en_US', 'googlePlusLocale' => 'en', 'demandClass' => '', 'search.' => array('fields' => 'teaser,title,bodytext', 'splitSearchWord' => '0', 'paginate.' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '10', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3')), 'detail.' => array('errorHandling' => 'showStandaloneTemplate,EXT:news/Resources/Private/Templates/News/DetailNotFound.html,404', 'checkPidOfNewsRecord' => '0', 'registerProperties' => 'keywords,title', 'showPrevNext' => '0', 'showSocialShareButtons' => '1', 'showMetaTags' => '1', 'media.' => array('image.' => array('lazyLoading' => 'lazy', 'maxWidth' => '1200', 'maxHeight' => '510c-125', 'lightbox.' => array('enabled' => '1', 'class' => 'fancybox', 'width' => '1960m', 'height' => '800m', 'rel' => 'lightbox[myImageSet]')), 'video.' => array('width' => '282', 'height' => '159')), 'pageTitle' => '1', 'pageTitle.' => array('provider' => 'GeorgRinger\\News\\Seo\\NewsTitleProvider', 'properties' => 'title,teaser')), 'list.' => array('media.' => array('dummyImage' => 'EXT:site_package/Resources/Public/Images/Dummy_News2.jpg', 'image.' => array('lazyLoading' => 'lazy', 'width' => '540', 'height' => '360c')), 'paginate.' => array('class' => 'GeorgRinger\\NumberedPagination\\NumberedPagination', 'itemsPerPage' => '10', 'insertAbove' => '1', 'insertBelow' => '1', 'maximumNumberOfLinks' => '3'), 'rss.' => array('channel.' => array('title' => 'Dummy Title', 'description' => '', 'language' => 'en-gb', 'copyright' => 'TYPO3 News', 'generator' => 'TYPO3 EXT:news', 'link' => 'http://example.com', 'typeNum' => '9818'))), 'opengraph.' => array('site_name' => '', 'type' => 'article', 'admins' => '', 'locale' => '', 'twitter.' => array('card' => 'summary', 'site' => '', 'creator' => '')), 'settings.' => array('media.' => array('maxHeight' => '150c')), 'list2.' => array('media.' => array('image.' => array('width' => '563', 'height' => '375'))), 'categoryConjunction' => 'and', 'listPid' => '11'))), 'lib.dynamicContent', 'dynamicContent')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('colPos' => 0), 'typoscriptObjectPath' => 'lib.dynamicContent', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/Standard_action_asienhausfullwidth_e985fde2b79f3eb68a0aa54d2752747f002e6cd6.php line 134
$array13 = array();
$array13['colPos'] = 0;
$arguments11['data'] = $array13;
$renderChildrenClosure12 = ($arguments11['data'] !== null) ? function() use ($arguments11) { return $arguments11['data']; } : $renderChildrenClosure12;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments11, $renderChildrenClosure12, $renderingContext);

$output0 .= '
    </div>
  </div> <!-- end row -->
at Standard_action_asienhausfullwidth_e985fde2b79f3eb68a0aa54d2752747f002e6cd6->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 258
                    new InvalidSectionException('Section "' . $sectionName . '" does not exist.')
                );
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('Main', array(), false)
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Main', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3temp/var/cache/code/fluid_template/layout_Default_html_f1e2f09464523a123c5a7aaf21dc1bbc57ea611d.php line 83
$arguments3['contentAs'] = NULL;
$arguments3['debug'] = true;
$arguments3['section'] = 'Main';

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

$output0 .= '
';

at layout_Default_html_f1e2f09464523a123c5a7aaf21dc1bbc57ea611d->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 200
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 340
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__site_package_default' => 'TEXT', 'pagets__site_package_default.' => array('value' => 'Default'), 'default' => 'TEXT', 'default.' => array('value' => 'Default'), 'pagets__asienhausfullwidth' => 'TEXT', 'pagets__asienhausfullwidth.' => array('value' => 'Asienhausfullwidth'), 'pagets__asienhausfullwidth66' => 'TEXT', 'pagets__asienhausfullwidth66.' => array('value' => 'Asienhausfullwidth66'), 'pagets__asienhaushome' => 'TEXT', 'pagets__asienhaushome.' => array('value' => 'Asienhaushome'), 'pagets__asienhauspage' => 'TEXT', 'pagets__asienhauspage.' => array('value' => 'Asienhauspage'), 'pagets__asienhausnewsdetail' => 'TEXT', 'pagets__asienhausnewsdetail.' => array('value' => 'Asienhausnewsdetail')))), 'variables.' => array('linkespalte' => 'COA', 'linkespalte.' => array('CONTENT', '1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colpos = 3', 'languageField' => 'sys_language_uid'), 'slide' => '-1'))), 'templateRootPaths.' => array('EXT:site_package/Resources/Private/Templates/Page/', 'EXT:site_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:site_package/Resources/Private/Partials/Page/', 'EXT:site_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:site_package/Resources/Private/Layouts/Page/', 'EXT:site_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value' => '765,766,767,745'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'mainnavigation'))))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // 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' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__site_package_default' => 'TEXT', 'pagets__site_package_default.' => array('value' => 'Default'), 'default' => 'TEXT', 'default.' => array('value' => 'Default'), 'pagets__asienhausfullwidth' => 'TEXT', 'pagets__asienhausfullwidth.' => array('value' => 'Asienhausfullwidth'), 'pagets__asienhausfullwidth66' => 'TEXT', 'pagets__asienhausfullwidth66.' => array('value' => 'Asienhausfullwidth66'), 'pagets__asienhaushome' => 'TEXT', 'pagets__asienhaushome.' => array('value' => 'Asienhaushome'), 'pagets__asienhauspage' => 'TEXT', 'pagets__asienhauspage.' => array('value' => 'Asienhauspage'), 'pagets__asienhausnewsdetail' => 'TEXT', 'pagets__asienhausnewsdetail.' => array('value' => 'Asienhausnewsdetail')))), 'variables.' => array('linkespalte' => 'COA', 'linkespalte.' => array('CONTENT', '1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colpos = 3', 'languageField' => 'sys_language_uid'), 'slide' => '-1'))), 'templateRootPaths.' => array('EXT:site_package/Resources/Private/Templates/Page/', 'EXT:site_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:site_package/Resources/Private/Partials/Page/', 'EXT:site_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:site_package/Resources/Private/Layouts/Page/', 'EXT:site_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value' => '765,766,767,745'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'mainnavigation'))))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__site_package_default' => 'TEXT', 'pagets__site_package_default.' => array('value' => 'Default'), 'default' => 'TEXT', 'default.' => array('value' => 'Default'), 'pagets__asienhausfullwidth' => 'TEXT', 'pagets__asienhausfullwidth.' => array('value' => 'Asienhausfullwidth'), 'pagets__asienhausfullwidth66' => 'TEXT', 'pagets__asienhausfullwidth66.' => array('value' => 'Asienhausfullwidth66'), 'pagets__asienhaushome' => 'TEXT', 'pagets__asienhaushome.' => array('value' => 'Asienhaushome'), 'pagets__asienhauspage' => 'TEXT', 'pagets__asienhauspage.' => array('value' => 'Asienhauspage'), 'pagets__asienhausnewsdetail' => 'TEXT', 'pagets__asienhausnewsdetail.' => array('value' => 'Asienhausnewsdetail')))), 'variables.' => array('linkespalte' => 'COA', 'linkespalte.' => array('CONTENT', '1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colpos = 3', 'languageField' => 'sys_language_uid'), 'slide' => '-1'))), 'templateRootPaths.' => array('EXT:site_package/Resources/Private/Templates/Page/', 'EXT:site_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:site_package/Resources/Private/Partials/Page/', 'EXT:site_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:site_package/Resources/Private/Layouts/Page/', 'EXT:site_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value' => '765,766,767,745'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'mainnavigation'))), '10')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $contentObjects[] = $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $contentObjects;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSeparated(array('typeNum' => '0', 'FLUIDTEMPLATE', '10.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__site_package_default' => 'TEXT', 'pagets__site_package_default.' => array('value' => 'Default'), 'default' => 'TEXT', 'default.' => array('value' => 'Default'), 'pagets__asienhausfullwidth' => 'TEXT', 'pagets__asienhausfullwidth.' => array('value' => 'Asienhausfullwidth'), 'pagets__asienhausfullwidth66' => 'TEXT', 'pagets__asienhausfullwidth66.' => array('value' => 'Asienhausfullwidth66'), 'pagets__asienhaushome' => 'TEXT', 'pagets__asienhaushome.' => array('value' => 'Asienhaushome'), 'pagets__asienhauspage' => 'TEXT', 'pagets__asienhauspage.' => array('value' => 'Asienhauspage'), 'pagets__asienhausnewsdetail' => 'TEXT', 'pagets__asienhausnewsdetail.' => array('value' => 'Asienhausnewsdetail')))), 'variables.' => array('linkespalte' => 'COA', 'linkespalte.' => array('CONTENT', '1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colpos = 3', 'languageField' => 'sys_language_uid'), 'slide' => '-1'))), 'templateRootPaths.' => array('EXT:site_package/Resources/Private/Templates/Page/', 'EXT:site_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:site_package/Resources/Private/Partials/Page/', 'EXT:site_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:site_package/Resources/Private/Layouts/Page/', 'EXT:site_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value' => '765,766,767,745'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'mainnavigation'))), 'includeCSS.' => array('bootstrap' => 'EXT:site_package/Resources/Public/bootstrap4/css/bootstrap.min.css', 'fonts' => 'EXT:site_package/Resources/Public/Css/fonts.css', 'website' => 'EXT:site_package/Resources/Public/Css/asienhaus.css', 'megamenu' => 'EXT:site_package/Resources/Public/Css/bootstrap-4-mega-menu.css', 'lightbox' => 'EXT:site_package/Resources/Public/lightbox/css/lightbox.css', 'rte' => 'EXT:site_package/Resources/Public/Css/rte-default.css', 'powermailBasicCss' => 'EXT:powermail/Resources/Public/Css/Basic.css', 'tx_fancybox' => 'EXT:fancybox/Resources/Public/Libraries/fancybox/jquery.fancybox.min.css', 'events' => 'EXT:sf_event_mgt/Resources/Public/Css/events_default.css'), 'includeJSFooter.' => array('jquery' => 'EXT:site_package/Resources/Public/bootstrap4/jquery-3.5.1.slim.min.js', 'bootstrap' => 'EXT:site_package/Resources/Public/bootstrap4/js/bootstrap.bundle.min.js', 'flexslider' => 'EXT:site_package/Resources/Public/bootstrap4/jquery.flexslider-min.js', 'asienhaus' => 'EXT:site_package/Resources/Public/JavaScript/asienhaus.js', 'lightbox' => 'EXT:site_package/Resources/Public/lightbox/js/lightbox.min.js', 'jQueryForInfiniteScrolling' => '//ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js', 'jQueryForInfiniteScrolling.' => array('external' => '1', 'excludeFromConcatenation' => '1', 'disableCompression' => '1', 'if.' => array('isTrue' => '1')), 'infiniteScrolling_callback' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/callback.js', 'infiniteScrolling_ias' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/jquery-ias.js', 'infiniteScrolling_spinner' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/Extension/Spinner.js', 'infiniteScrolling_paging' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/Extension/Paging.js', 'infiniteScrolling_trigger' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/Extension/Trigger.js', 'infiniteScrolling_history' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/Extension/History.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'powermailForm.' => array('defer' => '1'), 'tx_fancybox_jquery' => 'EXT:fancybox/Resources/Public/Libraries/jquery-3.6.0/jquery.min.js', 'tx_fancybox_jquery.' => array('if.' => array('isTrue' => '0')), 'tx_fancybox' => 'EXT:fancybox/Resources/Public/Libraries/fancybox/jquery.fancybox.min.js', 'tx_fancybox.' => array('async' => '1')), 'jsFooterInline.' => array('COA', '1519224720.' => array('COA', '10.' => array('TEXT', '10.' => array('value' => 'container: "div.news-list-view",'), 'TEXT', '20.' => array('value' => 'scrollContainer: jQuery(window),'), 'TEXT', '30.' => array('value' => 'item: "div.news-list-item div.col-12",'), 'TEXT', '40.' => array('value' => 'pagination: "div.page-navigation",'), 'TEXT', '50.' => array('value' => 'next: "div.page-navigation:eq(1) ul.f3-widget-paginator li.next a",'), 'TEXT', '80.' => array('value' => 'delay: 500,'), 'TEXT', '90.' => array('value' => 'negativeMargin: 0'), 'wrap' => 'var ias = jQuery.ias({|});'), 'TEXT', '20.' => array('value' => '{src}', 'wrap' => 'html: \'<div class="ias-spinner" style="text-align: center;"><img src="|"/></div>\'', 'wrap3' => 'ias.extension(new IASSpinnerExtension({|}));'), 'TEXT', '30.' => array('value' => 'ias.extension(new IASPagingExtension());'), 'TEXT', '40.' => array('dataWrap' => 'text: \'{LLL:EXT:infinitescrolling/Resources/Private/Language/locallang.xml:loadMoreItems}\', textPrev: \'{LLL:EXT:infinitescrolling/Resources/Private/Language/locallang.xml:loadPrevItems}\', offset: 5', 'wrap3' => 'ias.extension(new IASTriggerExtension({|}));'), 'TEXT', '50.' => array('value' => 'prev: \'div.page-navigation:eq(1) ul.f3-widget-paginator li.previous a\'', 'wrap' => 'ias.extension(new IASHistoryExtension({|}));'), 'wrap' => 'jQuery(function() {|});')), 'meta.' => array('description' => 'Die Stiftung Asienhaus setzt sich für die Verwirklichung der Menschenrechte, für die Stärkung gesellschaftlicher und politischer Teilhabe, sowie für soziale Gerechtigkeit und den Schutz der Umwelt ein. Wir verbinden Menschen durch die Entwicklung der Zusammenarbeit zwischen Nichtregierungsorganisationen und sozialen Bewegungen in Europa und Asien.', 'description.' => array('override.' => array('field' => 'description'))), 'shortcutIcon' => 'EXT:site_package/Resources/Public/Images/favicon/Fav_SAH.svg', 'headerData.' => array('TEXT', '1.' => array('value' => '<link rel="apple-touch-icon" href="./typo3conf/ext/site_package/Resources/Public/Images/favicon/Fav_SAH.png"><link rel="icon" type="image/png" href="./typo3conf/ext/site_package/Resources/Public/Images/favicon/Fav_SAH.png" sizes="32x32"><link rel="icon" type="image/png" href="./typo3conf/ext/site_package/Resources/Public/Images/favicon/Fav_SAH.png" sizes="96x96">'), 'TEXT', '2.' => array('value' => '<meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <script> $("fancybox-is-open").addClass("fancybox-show-thumbs"); function myFunction() { var element = document.getElementByClassName("fancybox-is-open"); element.classList.add("fancybox-show-thumbs"); } </script> <!-- Matomo --> <script type="text/plain" data-usercentrics="Matomo (self hosted)" data-cookiecategory="Matomo"> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push([\'trackPageView\']); _paq.push([\'enableLinkTracking\']); (function() { var u="//www.asienhaus.de/piwik/"; _paq.push([\'setTrackerUrl\', u+\'matomo.php\']); _paq.push([\'setSiteId\', \'1\']); var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0]; g.async=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s); })(); </script> <!-- End Matomo Code --> <script id="usercentrics-cmp" async data-eu-mode="true" data-settings-id="Whalonrnl" src="https://app.eu.usercentrics.eu/browser-ui/latest/loader.js"></script> <script type="application/javascript" src="https://sdp.eu.usercentrics.eu/latest/uc-block.bundle.js"></script> '), 'COA', '5.' => array('wrap' => '<title>|</title>', 'TEXT', '5.' => array('value' => 'Asienhaus:&nbsp;'), 'TEXT', '10.' => array('field' => 'subtitle // tx_tqseo_pagetitle_rel // title')))), '')
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 693
    {
        if (!is_array($setup)) {
            return '';
        }
        return implode('', $this->cObjGetSeparated($setup, $addKey));
    }

    /**
     * Rendering of a "numerical array" of cObjects from TypoScript
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('typeNum' => '0', 'FLUIDTEMPLATE', '10.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__site_package_default' => 'TEXT', 'pagets__site_package_default.' => array('value' => 'Default'), 'default' => 'TEXT', 'default.' => array('value' => 'Default'), 'pagets__asienhausfullwidth' => 'TEXT', 'pagets__asienhausfullwidth.' => array('value' => 'Asienhausfullwidth'), 'pagets__asienhausfullwidth66' => 'TEXT', 'pagets__asienhausfullwidth66.' => array('value' => 'Asienhausfullwidth66'), 'pagets__asienhaushome' => 'TEXT', 'pagets__asienhaushome.' => array('value' => 'Asienhaushome'), 'pagets__asienhauspage' => 'TEXT', 'pagets__asienhauspage.' => array('value' => 'Asienhauspage'), 'pagets__asienhausnewsdetail' => 'TEXT', 'pagets__asienhausnewsdetail.' => array('value' => 'Asienhausnewsdetail')))), 'variables.' => array('linkespalte' => 'COA', 'linkespalte.' => array('CONTENT', '1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colpos = 3', 'languageField' => 'sys_language_uid'), 'slide' => '-1'))), 'templateRootPaths.' => array('EXT:site_package/Resources/Private/Templates/Page/', 'EXT:site_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:site_package/Resources/Private/Partials/Page/', 'EXT:site_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:site_package/Resources/Private/Layouts/Page/', 'EXT:site_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value' => '765,766,767,745'), 'levels' => '1', 'includeSpacer' => '1', 'as' => 'mainnavigation'))), 'includeCSS.' => array('bootstrap' => 'EXT:site_package/Resources/Public/bootstrap4/css/bootstrap.min.css', 'fonts' => 'EXT:site_package/Resources/Public/Css/fonts.css', 'website' => 'EXT:site_package/Resources/Public/Css/asienhaus.css', 'megamenu' => 'EXT:site_package/Resources/Public/Css/bootstrap-4-mega-menu.css', 'lightbox' => 'EXT:site_package/Resources/Public/lightbox/css/lightbox.css', 'rte' => 'EXT:site_package/Resources/Public/Css/rte-default.css', 'powermailBasicCss' => 'EXT:powermail/Resources/Public/Css/Basic.css', 'tx_fancybox' => 'EXT:fancybox/Resources/Public/Libraries/fancybox/jquery.fancybox.min.css', 'events' => 'EXT:sf_event_mgt/Resources/Public/Css/events_default.css'), 'includeJSFooter.' => array('jquery' => 'EXT:site_package/Resources/Public/bootstrap4/jquery-3.5.1.slim.min.js', 'bootstrap' => 'EXT:site_package/Resources/Public/bootstrap4/js/bootstrap.bundle.min.js', 'flexslider' => 'EXT:site_package/Resources/Public/bootstrap4/jquery.flexslider-min.js', 'asienhaus' => 'EXT:site_package/Resources/Public/JavaScript/asienhaus.js', 'lightbox' => 'EXT:site_package/Resources/Public/lightbox/js/lightbox.min.js', 'jQueryForInfiniteScrolling' => '//ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js', 'jQueryForInfiniteScrolling.' => array('external' => '1', 'excludeFromConcatenation' => '1', 'disableCompression' => '1', 'if.' => array('isTrue' => '1')), 'infiniteScrolling_callback' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/callback.js', 'infiniteScrolling_ias' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/jquery-ias.js', 'infiniteScrolling_spinner' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/Extension/Spinner.js', 'infiniteScrolling_paging' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/Extension/Paging.js', 'infiniteScrolling_trigger' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/Extension/Trigger.js', 'infiniteScrolling_history' => 'EXT:infinitescrolling/Resources/Public/JavaScript/Ias/Extension/History.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'powermailForm.' => array('defer' => '1'), 'tx_fancybox_jquery' => 'EXT:fancybox/Resources/Public/Libraries/jquery-3.6.0/jquery.min.js', 'tx_fancybox_jquery.' => array('if.' => array('isTrue' => '0')), 'tx_fancybox' => 'EXT:fancybox/Resources/Public/Libraries/fancybox/jquery.fancybox.min.js', 'tx_fancybox.' => array('async' => '1')), 'jsFooterInline.' => array('COA', '1519224720.' => array('COA', '10.' => array('TEXT', '10.' => array('value' => 'container: "div.news-list-view",'), 'TEXT', '20.' => array('value' => 'scrollContainer: jQuery(window),'), 'TEXT', '30.' => array('value' => 'item: "div.news-list-item div.col-12",'), 'TEXT', '40.' => array('value' => 'pagination: "div.page-navigation",'), 'TEXT', '50.' => array('value' => 'next: "div.page-navigation:eq(1) ul.f3-widget-paginator li.next a",'), 'TEXT', '80.' => array('value' => 'delay: 500,'), 'TEXT', '90.' => array('value' => 'negativeMargin: 0'), 'wrap' => 'var ias = jQuery.ias({|});'), 'TEXT', '20.' => array('value' => '{src}', 'wrap' => 'html: \'<div class="ias-spinner" style="text-align: center;"><img src="|"/></div>\'', 'wrap3' => 'ias.extension(new IASSpinnerExtension({|}));'), 'TEXT', '30.' => array('value' => 'ias.extension(new IASPagingExtension());'), 'TEXT', '40.' => array('dataWrap' => 'text: \'{LLL:EXT:infinitescrolling/Resources/Private/Language/locallang.xml:loadMoreItems}\', textPrev: \'{LLL:EXT:infinitescrolling/Resources/Private/Language/locallang.xml:loadPrevItems}\', offset: 5', 'wrap3' => 'ias.extension(new IASTriggerExtension({|}));'), 'TEXT', '50.' => array('value' => 'prev: \'div.page-navigation:eq(1) ul.f3-widget-paginator li.previous a\'', 'wrap' => 'ias.extension(new IASHistoryExtension({|}));'), 'wrap' => 'jQuery(function() {|});')), 'meta.' => array('description' => 'Die Stiftung Asienhaus setzt sich für die Verwirklichung der Menschenrechte, für die Stärkung gesellschaftlicher und politischer Teilhabe, sowie für soziale Gerechtigkeit und den Schutz der Umwelt ein. Wir verbinden Menschen durch die Entwicklung der Zusammenarbeit zwischen Nichtregierungsorganisationen und sozialen Bewegungen in Europa und Asien.', 'description.' => array('override.' => array('field' => 'description'))), 'shortcutIcon' => 'EXT:site_package/Resources/Public/Images/favicon/Fav_SAH.svg', 'headerData.' => array('TEXT', '1.' => array('value' => '<link rel="apple-touch-icon" href="./typo3conf/ext/site_package/Resources/Public/Images/favicon/Fav_SAH.png"><link rel="icon" type="image/png" href="./typo3conf/ext/site_package/Resources/Public/Images/favicon/Fav_SAH.png" sizes="32x32"><link rel="icon" type="image/png" href="./typo3conf/ext/site_package/Resources/Public/Images/favicon/Fav_SAH.png" sizes="96x96">'), 'TEXT', '2.' => array('value' => '<meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <script> $("fancybox-is-open").addClass("fancybox-show-thumbs"); function myFunction() { var element = document.getElementByClassName("fancybox-is-open"); element.classList.add("fancybox-show-thumbs"); } </script> <!-- Matomo --> <script type="text/plain" data-usercentrics="Matomo (self hosted)" data-cookiecategory="Matomo"> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push([\'trackPageView\']); _paq.push([\'enableLinkTracking\']); (function() { var u="//www.asienhaus.de/piwik/"; _paq.push([\'setTrackerUrl\', u+\'matomo.php\']); _paq.push([\'setSiteId\', \'1\']); var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0]; g.async=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s); })(); </script> <!-- End Matomo Code --> <script id="usercentrics-cmp" async data-eu-mode="true" data-settings-id="Whalonrnl" src="https://app.eu.usercentrics.eu/browser-ui/latest/loader.js"></script> <script type="application/javascript" src="https://sdp.eu.usercentrics.eu/latest/uc-block.bundle.js"></script> '), 'COA', '5.' => array('wrap' => '<title>|</title>', 'TEXT', '5.' => array('value' => 'Asienhaus:&nbsp;'), 'TEXT', '10.' => array('field' => 'subtitle // tx_tqseo_pagetitle_rel // title')))))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 223
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 189
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 141
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

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

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

at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/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(TYPO3\CMS\Frontend\Http\RequestHandler))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Middleware/ResponsePropagation.php line 34
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        try {
            $response = $handler->handle($request);
        } catch (PropagateResponseException $e) {
            $response = $e->getResponse();
        }

at TYPO3\CMS\Core\Middleware\ResponsePropagation->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 44
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && StateUtility::isActivatedForUser()
            && StateUtility::isActivatedInTypoScript()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && StateUtility::isActivatedForUser()
            && StateUtility::isActivatedInTypoScript()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController) {
            if (
                (!isset($GLOBALS['TSFE']->config['config']['enableContentLengthHeader']) || $GLOBALS['TSFE']->config['config']['enableContentLengthHeader'])
                && !$GLOBALS['TSFE']->isBackendUserLoggedIn() && !($GLOBALS['TYPO3_CONF_VARS']['FE']['debug'] ?? false)
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 79
                );
            }
        }

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

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

        /**
         * Release TSFE locks. They have been acquired in the above call to controller->getFromCache().
         * TSFE locks are usually released by the RequestHandler 'final' middleware.
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 104
        // Make TSFE globally available
        // @todo deprecate $GLOBALS['TSFE'] once TSFE is retrieved from the
        //       PSR-7 request attribute frontend.controller throughout TYPO3 core
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/adminpanel/Classes/Middleware/SqlLogging.php line 58
        if (StateUtility::isActivatedForUser() && StateUtility::isOpen()) {
            $connection = $this->connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME);
            $connection->getConfiguration()->setSQLLogger(GeneralUtility::makeInstance(DoctrineSqlLogger::class));
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\SqlLogging->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreviewPermissions.php line 47
        $pageArguments = $request->getAttribute('routing', null);
        if ($pageArguments instanceof PageArguments && $GLOBALS['BE_USER'] instanceof PreviewUserAuthentication) {
            $GLOBALS['BE_USER']->setWebmounts([$pageArguments->getPageId()]);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreviewPermissions->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 132
            }
        }

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

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreview.php line 128
            $addInformationAboutDisabledCache = true;
            $setCookieOnCurrentRequest = false;
        }

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

        $tsfe = $this->getTypoScriptFrontendController();
        if ($tsfe instanceof TypoScriptFrontendController && $addInformationAboutDisabledCache) {
            $tsfe->set_no_cache('GET Parameter ADMCMD_prev=LIVE was given', true);
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreview->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 89
                return $response;
            }
        }

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

    protected function buildRedirectResponse(UriInterface $uri, array $redirectRecord): ResponseInterface
    {
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php line 55
                MainController::class
            );
            $request = $adminPanelController->initialize($request);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 97
        if ($this->context->getAspect('frontend.user')->isLoggedIn() && $rateLimiter) {
            $rateLimiter->reset();
        }

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

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

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

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

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

    /**
     * Checks if the provided host header value matches the trusted hosts pattern.
at TYPO3\CMS\Core\Middleware\VerifyHostHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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/www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$226->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/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 /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/core/Classes/Http/AbstractApplication.php line 86
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        try {
            $response = $this->requestHandler->handle($request);
        } catch (ImmediateResponseException $exception) {
            $response = $exception->getResponse();
        }
        return $response;
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w0146845/asienhaus115.asienhaus.de/typo3_src-11.5.36/typo3/sysext/frontend/Classes/Http/Application.php line 69
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

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

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