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/2) #1407060572 TYPO3Fluid\Fluid\Core\Parser\Exception

Fluid parse error in template partial_Media/Rendering/Image_1d484241c67b9e363c0c91e6ba5fa9970c96d054, line 11 at character 3. Error: The ViewHelper "<i:image>" could not be resolved. Based on your spelling, the system would load the class "B13\Picture\ViewHelpers\ImageViewHelper", however this class does not exist. (error code 1407060572). Template source chunk: <i:image image="{file}" addWebp="1" useRetina="0" width="{dimensions.width}" pictureClass="" class="w-auto" crop="{image.crop}" loading="{settings.media.lazyLoading}" alt="{file.alternative}" />

in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 160
    public function createParsingRelatedExceptionWithContext(\Exception $error, $templateIdentifier)
    {
        list($line, $character, $templateCode) = $this->getCurrentParsingPointers();
        $exceptionClass = get_class($error);
        return new $exceptionClass(
            sprintf(
                'Fluid parse error in template %s, line %d at character %d. Error: %s (error code %d). Template source chunk: %s',
                $templateIdentifier,
                $line,
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->createParsingRelatedExceptionWithContext(object(TYPO3Fluid\Fluid\Core\Parser\Exception), 'partial_Media/Rendering/Image_1d484241c67b9e363c0c91e6ba5fa9970c96d054')
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 145

            $splitTemplate = $this->splitTemplateAtDynamicTags($templateString);
            $parsingState = $this->buildObjectTree($splitTemplate, self::CONTEXT_OUTSIDE_VIEWHELPER_ARGUMENTS);
        } catch (Exception $error) {
            throw $this->createParsingRelatedExceptionWithContext($error, $templateIdentifier);
        }
        $this->parsedTemplates[$templateIdentifier] = $parsingState;
        return $parsingState;
    }
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->parse(' <i:image image="{file}" addWebp="1" useRetina="0" width="{dimensions.width}" pictureClass="" class="w-auto" crop="{image.crop}" loading="{settings.media.lazyLoading}" alt="{file.alternative}" />', 'partial_Media/Rendering/Image_1d484241c67b9e363c0c91e6ba5fa9970c96d054')
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 211
     */
    protected function parseTemplateSource($templateIdentifier, $templateSourceClosure)
    {
        $parsedTemplate = $this->parse(
            $templateSourceClosure($this, $this->renderingContext->getTemplatePaths()),
            $templateIdentifier
        );
        $parsedTemplate->setIdentifier($templateIdentifier);
        $this->parsedTemplates[$templateIdentifier] = $parsedTemplate;
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->parseTemplateSource('partial_Media/Rendering/Image_1d484241c67b9e363c0c91e6ba5fa9970c96d054', object(Closure))
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 191
            if ($parsedTemplate instanceof UncompilableTemplateInterface) {
                $parsedTemplate = $this->parseTemplateSource($templateIdentifier, $templateSourceClosure);
            }
        } else {
            $parsedTemplate = $this->parseTemplateSource($templateIdentifier, $templateSourceClosure);
            try {
                $compiler->store($templateIdentifier, $parsedTemplate);
            } catch (StopCompilingException $stop) {
                $this->renderingContext->getErrorHandler()->handleCompilerError($stop);
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->getOrParseAndStoreTemplate('partial_Media/Rendering/Image_1d484241c67b9e363c0c91e6ba5fa9970c96d054', object(Closure))
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 305
            $parsedPartial = $renderingContext->getTemplateParser()->getOrParseAndStoreTemplate(
                $templatePaths->getPartialIdentifier($partialName),
                function ($parent, TemplatePaths $paths) use ($partialName) {
                    return $paths->getPartialSource($partialName);
                }
            );
        } catch (PassthroughSourceException $error) {
            return $error->getSource();
        } catch (InvalidTemplateResourceException $error) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('Media/Rendering/Image', null, array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), false)
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 170
            $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' => 'Media/Rendering/Image', 'delegate' => null, 'renderable' => null, 'arguments' => array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f.php line 434
$array14 = array (
);$array11['settings'] = $renderingContext->getVariableProvider()->getByPath('settings', $array14);
$arguments9['arguments'] = $array11;

$output8 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments9, $renderChildrenClosure10, $renderingContext);

$output8 .= '
            ';
return $output8;
at partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f->{closure}()
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/fluid/Classes/ViewHelpers/Link/TypolinkViewHelper.php line 146
        // expose internal typoLink configuration to Fluid child context
        $variableProvider = $renderingContext->getVariableProvider();
        $variableProvider->add($partsAs, $typoLinkConfiguration);
        // If no link has to be rendered, the inner content will be returned as such
        $content = (string)$renderChildrenClosure();
        // clean up exposed variables
        $variableProvider->remove($partsAs);

        if ($parameter) {
at TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic(array('parameter' => 't3://file?uid=7166 _blank', 'target' => '', 'class' => '', 'title' => '', 'language' => null, 'additionalParams' => '', 'additionalAttributes' => array(), 'addQueryString' => false, 'addQueryStringMethod' => null, 'addQueryStringExclude' => '', 'absolute' => false, 'parts-as' => 'typoLinkParts', 'textWrap' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f.php line 460
);$arguments4['parameter'] = $renderingContext->getVariableProvider()->getByPath('file.link', $array6);
$array7 = array (
);$arguments4['title'] = $renderingContext->getVariableProvider()->getByPath('file.title', $array7);

$output3 .= TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output3 .= '
        ';
return $output3;
at partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f->{closure}()
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f.php line 707
        ';
return $output15;
};

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

$output0 .= '
    ';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
at partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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('Media/Type/Image', null, array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), false)
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 170
            $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' => 'Media/Type/Image', 'delegate' => null, 'renderable' => null, 'arguments' => array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b.php line 317
$array26 = array (
);$array22['settings'] = $renderingContext->getVariableProvider()->getByPath('settings', $array26);
$arguments20['arguments'] = $array22;

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

$output19 .= '
    ';
return $output19;
at partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b->{closure}()
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b.php line 322

$output19 .= '
    ';
return $output19;
});
}
}, array($arguments1));

$output0 .= '
at partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b->{closure}(array('expression' => 5))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b.php line 324
    ';
return $output19;
});
}
}, array($arguments1));

$output0 .= '

';
at partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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('Media/Type', null, array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), false)
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 170
            $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' => 'Media/Type', 'delegate' => null, 'renderable' => null, 'arguments' => array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16.php line 169
$array39 = array (
);$array35['settings'] = $renderingContext->getVariableProvider()->getByPath('settings', $array39);
$arguments33['arguments'] = $array35;

$output32 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments33, $renderChildrenClosure34, $renderingContext);

$output32 .= '
                        </div>
                    ';
at partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16->{closure}()
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16.php line 195
     $renderingContext
    );
$arguments27['__thenClosure'] = $renderChildrenClosure28;

$output26 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments27, $renderChildrenClosure28, $renderingContext);

$output26 .= '
                ';
return $output26;
at partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16->{closure}()
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/ForViewHelper.php line 144
                $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' => array(array('media' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0))), 'as' => 'column', 'key' => null, 'reverse' => false, 'iteration' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16.php line 211
$array25 = array (
);$arguments23['each'] = $renderingContext->getVariableProvider()->getByPath('row.columns', $array25);
$arguments23['as'] = 'column';

$output22 .= TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic($arguments23, $renderChildrenClosure24, $renderingContext);

$output22 .= '
            </div>
        ';
at partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16->{closure}()
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/ForViewHelper.php line 144
                $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' => array(array('columns' => array(array('media' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0))))), 'as' => 'row', 'key' => null, 'reverse' => false, 'iteration' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16.php line 228
$array21 = array (
);$arguments19['each'] = $renderingContext->getVariableProvider()->getByPath('gallery.rows', $array21);
$arguments19['as'] = 'row';

$output6 .= TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic($arguments19, $renderChildrenClosure20, $renderingContext);

$output6 .= '
        ';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
at partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16->{closure}()
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16.php line 285
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

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

$output0 .= '

';
at partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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('Media/Gallery', null, array('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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0'))), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), 'current' => null, 'files' => array(object(TYPO3\CMS\Core\Resource\FileReference)), 'gallery' => array('position' => array('horizontal' => 'right', 'vertical' => 'intext', 'noWrap' => true), 'width' => 320, 'count' => array('files' => 1, 'columns' => 1, 'rows' => 1), 'columnSpacing' => 25, 'border' => array('enabled' => false, 'width' => 1, 'padding' => 0), 'rows' => array(array('columns' => array(array('media' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0))))))), false)
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 170
            $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' => 'Media/Gallery', 'delegate' => null, 'renderable' => null, 'arguments' => array('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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0'))), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), 'current' => null, 'files' => array(object(TYPO3\CMS\Core\Resource\FileReference)), 'gallery' => array('position' => array('horizontal' => 'right', 'vertical' => 'intext', 'noWrap' => true), 'width' => 320, 'count' => array('files' => 1, 'columns' => 1, 'rows' => 1), 'columnSpacing' => 25, 'border' => array('enabled' => false, 'width' => 1, 'padding' => 0), 'rows' => array(array('columns' => array(array('media' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0))))))), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/Standard_action_textpic_6463f736cea41a6190d6d31c3cc1a37c2a8d8185.php line 171
$arguments24['debug'] = true;
$arguments24['partial'] = 'Media/Gallery';
$arguments24['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output23 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments24, $renderChildrenClosure25, $renderingContext);

$output23 .= '
        ';
return $output23;
at Standard_action_textpic_6463f736cea41a6190d6d31c3cc1a37c2a8d8185->{closure}()
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/Standard_action_textpic_6463f736cea41a6190d6d31c3cc1a37c2a8d8185.php line 197
     $renderingContext
    );
$arguments18['__thenClosure'] = $renderChildrenClosure19;

$output10 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments18, $renderChildrenClosure19, $renderingContext);

$output10 .= '

        ';
at Standard_action_textpic_6463f736cea41a6190d6d31c3cc1a37c2a8d8185->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 172
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Main', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => true, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/layout_Default_html_2b131884094ed29a0dd9aeb92def832b327eb40d.php line 1147
     ),
     $renderingContext
    );

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

$output3 .= '
                ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_2b131884094ed29a0dd9aeb92def832b327eb40d->{closure}()
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/layout_Default_html_2b131884094ed29a0dd9aeb92def832b327eb40d.php line 1669
        ';
return $output65;
};

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

$output0 .= '

';
at layout_Default_html_2b131884094ed29a0dd9aeb92def832b327eb40d->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/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' => 'Textpic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1280m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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')))))
in /home/bbscongr/public_html/typo3-v11/public/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' => 'Textpic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1280m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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')))))
in /home/bbscongr/public_html/typo3-v11/public/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' => 'Textpic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1280m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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')))), 'lib.contentElement')
in /home/bbscongr/public_html/typo3-v11/public/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' => 'Textpic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1280m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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')))), 'textpic')
in /home/bbscongr/public_html/typo3-v11/public/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')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('bbsanmeldung_bbscongresskongresse' => 'USER', 'bbsanmeldung_bbscongresskongresse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongresskongresse'), 'bbsanmeldung_bbscongress' => 'USER', 'bbsanmeldung_bbscongress.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongress'), 'bbsabstracts_abstracts' => 'USER', 'bbsabstracts_abstracts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstracts'), 'bbsabstracts_abstractspdf' => 'USER', 'bbsabstracts_abstractspdf.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstractspdf'), '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')), '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')))), '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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'))))
in /home/bbscongr/public_html/typo3-v11/public/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')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('bbsanmeldung_bbscongresskongresse' => 'USER', 'bbsanmeldung_bbscongresskongresse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongresskongresse'), 'bbsanmeldung_bbscongress' => 'USER', 'bbsanmeldung_bbscongress.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongress'), 'bbsabstracts_abstracts' => 'USER', 'bbsabstracts_abstracts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstracts'), 'bbsabstracts_abstractspdf' => 'USER', 'bbsabstracts_abstractspdf.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstractspdf'), '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')), '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')))), '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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'))))
in /home/bbscongr/public_html/typo3-v11/public/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')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('bbsanmeldung_bbscongresskongresse' => 'USER', 'bbsanmeldung_bbscongresskongresse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongresskongresse'), 'bbsanmeldung_bbscongress' => 'USER', 'bbsanmeldung_bbscongress.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongress'), 'bbsabstracts_abstracts' => 'USER', 'bbsabstracts_abstracts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstracts'), 'bbsabstracts_abstractspdf' => 'USER', 'bbsabstracts_abstractspdf.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstractspdf'), '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')), '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')))), '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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'))), 'tt_content')
in /home/bbscongr/public_html/typo3-v11/public/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')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('bbsanmeldung_bbscongresskongresse' => 'USER', 'bbsanmeldung_bbscongresskongresse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongresskongresse'), 'bbsanmeldung_bbscongress' => 'USER', 'bbsanmeldung_bbscongress.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongress'), 'bbsabstracts_abstracts' => 'USER', 'bbsabstracts_abstracts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstracts'), 'bbsabstracts_abstractspdf' => 'USER', 'bbsabstracts_abstractspdf.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstractspdf'), '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')), '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')))), '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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'))), '')
in /home/bbscongr/public_html/typo3-v11/public/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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /home/bbscongr/public_html/typo3-v11/public/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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /home/bbscongr/public_html/typo3-v11/public/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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), '20')
in /home/bbscongr/public_html/typo3-v11/public/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', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), '')
in /home/bbscongr/public_html/typo3-v11/public/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', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /home/bbscongr/public_html/typo3-v11/public/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', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /home/bbscongr/public_html/typo3-v11/public/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', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /home/bbscongr/public_html/typo3-v11/public/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', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'lib.dynamicContent')
in /home/bbscongr/public_html/typo3-v11/public/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('contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1280m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')))), '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', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), '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', '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', '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' => 'ce-table', 'always' => '1')))), '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'))), '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', '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', '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'))), 'dynamicContent' => 'COA', 'dynamicContent.' => array('LOAD_REGISTER', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'dynamicContentSlide' => '< lib.dynamicContent', 'dynamicContentSlide.' => array('20.' => array('slide' => '-1')), 'lang' => 'COA', 'lang.' => array('wrap' => '<ul>|</ul>', 'HMENU', '10.' => array('special' => 'language', 'special.' => array('value' => '0,1', 'normalWhenNoLanguage' => '0'), 'TMENU', '1.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('linkWrap' => '<li class="first">|</li> |*| <li>|</li> |*| <li>|</li>', 'stdWrap.' => array('override' => 'D || F', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&L=0 || &L=1', 'title' => 'deutsch || français', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'L,id,cHash,no_cache', 'method' => 'GET'), 'useCacheHash' => '1', 'no_cache' => '0')), 'doNotLinkIt' => '1'), 'ACT' => '1', 'ACT.' => array('linkWrap' => '<li class="first active">|</li> |*| <li class="active">|</li> |*| <li class="active">|</li>', 'stdWrap.' => array('override' => 'D || F', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&L=0 || &L=1', 'title' => 'deutsch || français', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'L,id,cHash,no_cache', 'method' => 'GET'), 'useCacheHash' => '1', 'no_cache' => '0')), 'doNotLinkIt' => '1'), 'USERDEF1' => '1', 'USERDEF1.' => array('linkWrap' => '<li class="first passive">|</li> |*| <li class="passive">|</li> |*| <li class="passive">|</li>', 'stdWrap.' => array('override' => 'D || F'), 'doNotLinkIt' => '1'), 'USERDEF2' => '1', 'USERDEF2.' => array('linkWrap' => '<li class="first passive">|</li> |*| <li class="passive">|</li> |*| <li class="passive">|</li>', 'stdWrap.' => array('override' => 'D || F'), 'doNotLinkIt' => '1')))), 'logo' => 'COA', 'logo.' => array('stdWrap.' => array('typolink.' => array('parameter' => 't3://page?uid=1 - - "zurück zur Startseite"', 'ATagParams' => 'aria-label="zurück zur Startseite"')), 'TEXT', '10.' => array('value' => ' <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 465 86" style="enable-background:new 0 0 465 86;" xml:space="preserve"> <style type="text/css"> .st0{fill:#054B80;} .st1{fill:#4B494A;} .st2{fill-rule:evenodd;clip-rule:evenodd;fill:#0C88CA;} .st3{fill-rule:evenodd;clip-rule:evenodd;fill:#054B80;} .st4{fill-rule:evenodd;clip-rule:evenodd;fill:#4B494A;} .st5{fill-rule:evenodd;clip-rule:evenodd;fill:#0F66B0;} </style> <g> <path class="st0" d="M19.6,59.1H0.7v-43h16.7c2.9,0,5.4,0.3,7.5,1c2.1,0.7,3.7,1.6,4.8,2.8c1.9,2.2,2.9,4.7,2.9,7.5 c0,3.4-1.1,5.9-3.3,7.5c-0.7,0.6-1.3,0.9-1.5,1.1c-0.3,0.1-0.8,0.4-1.5,0.7c2.7,0.6,4.8,1.8,6.4,3.6c1.6,1.8,2.4,4.1,2.4,6.8 c0,3-1,5.6-3.1,7.9C29.6,57.8,25.5,59.1,19.6,59.1L19.6,59.1z M10.3,33.5h4.6c2.7,0,4.6-0.3,5.9-0.9c1.3-0.6,1.9-1.8,1.9-3.7 c0-1.9-0.6-3.2-1.8-3.8c-1.2-0.6-3.2-0.9-6-0.9h-4.6V33.5L10.3,33.5z M10.3,51h6.6c2.8,0,4.8-0.3,6.2-1c1.4-0.7,2.1-2,2.1-4 c0-2-0.7-3.3-2.2-3.9c-1.5-0.6-3.8-1-7-1h-5.7V51z"/> <path class="st0" d="M59.1,59.1H40.2v-43H57c2.9,0,5.4,0.3,7.5,1c2.1,0.7,3.7,1.6,4.8,2.8c1.9,2.2,2.9,4.7,2.9,7.5 c0,3.4-1.1,5.9-3.3,7.5c-0.7,0.6-1.3,0.9-1.5,1.1c-0.3,0.1-0.8,0.4-1.5,0.7c2.7,0.6,4.8,1.8,6.4,3.6c1.6,1.8,2.4,4.1,2.4,6.8 c0,3-1,5.6-3.1,7.9C69.1,57.8,65,59.1,59.1,59.1L59.1,59.1z M49.9,33.5h4.6c2.7,0,4.6-0.3,5.9-0.9c1.3-0.6,1.9-1.8,1.9-3.7 c0-1.9-0.6-3.2-1.8-3.8c-1.2-0.6-3.2-0.9-6-0.9h-4.6V33.5L49.9,33.5z M49.9,51h6.6c2.7,0,4.8-0.3,6.2-1c1.4-0.7,2.1-2,2.1-4 c0-2-0.7-3.3-2.2-3.9c-1.5-0.6-3.8-1-7-1h-5.7V51z"/> <path class="st0" d="M93.9,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.2-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C101.7,25,97.9,23.5,93.9,23.5z"/> <path class="st1" d="M150.4,50.6c4.7,0,8.6-1.9,11.6-5.6l6.2,6.3c-4.9,5.5-10.6,8.3-17.3,8.3c-6.6,0-12.1-2.1-16.4-6.3 c-4.3-4.2-6.4-9.5-6.4-15.9c0-6.4,2.2-11.7,6.6-16c4.4-4.3,9.7-6.4,16-6.4c7.1,0,13,2.7,17.7,8.1l-6,6.8c-3-3.8-6.8-5.7-11.3-5.7 c-3.6,0-6.7,1.2-9.3,3.5c-2.6,2.4-3.8,5.5-3.8,9.5c0,4,1.2,7.2,3.6,9.6C144,49.4,146.9,50.6,150.4,50.6z"/> <path class="st1" d="M206,37.4c0-1.5-0.2-2.8-0.5-4.1c2-2.9,4.2-5.7,6.5-8.6c2.5,3.6,3.8,7.8,3.8,12.6c0,6.3-2.2,11.6-6.5,15.9 c-4.4,4.2-9.7,6.4-16.1,6.4c-6.4,0-11.7-2.1-16.1-6.4c-4.4-4.2-6.5-9.5-6.5-15.9c0-2.2,0.3-4.4,0.8-6.3c3,1.5,6,3.5,9,6l0,0.4 c0,3.8,1.2,7.1,3.7,9.8c2.5,2.7,5.5,4,9.1,4c0.2,0,0.4,0,0.6,0l0.6,0c3.1-0.3,5.7-1.6,7.9-4C204.7,44.5,206,41.2,206,37.4L206,37.4 z M199.1,25c1.9-2,4-4.2,6.4-6.5c-3.6-2.3-7.7-3.4-12.3-3.4c-5.2,0-9.8,1.4-13.6,4.3c2.3,1.6,4.7,3.6,7.2,5.9 c1.9-1.2,4.1-1.8,6.5-1.8C195.4,23.5,197.4,24,199.1,25z"/> <polygon class="st1" points="252.2,16.1 261.9,16.1 261.9,59.1 252.2,59.1 231.7,32.2 231.7,59.1 222.1,59.1 222.1,16.1 231.1,16.1 252.2,43.8 "/> <path class="st1" d="M297.8,37.2h9.7v15.3c-4.3,4.8-10.2,7.1-17.7,7.1c-6.3,0-11.6-2.1-15.9-6.3c-4.3-4.2-6.4-9.5-6.4-15.9 c0-6.4,2.2-11.7,6.6-16c4.4-4.3,9.6-6.4,15.8-6.4c6.2,0,11.5,2,16.1,6.1l-5,7.2c-1.9-1.7-3.7-2.8-5.3-3.5c-1.6-0.6-3.4-1-5.3-1 c-3.7,0-6.7,1.2-9.2,3.7c-2.5,2.5-3.8,5.8-3.8,9.8s1.2,7.3,3.6,9.8c2.4,2.4,5.3,3.7,8.6,3.7c3.3,0,6.1-0.6,8.3-1.9V37.2z"/> <path class="st1" d="M349.2,30.4c0,6.9-2.7,11.3-8.2,13.4l10.9,15.4H340l-9.5-13.7h-6.7v13.7h-9.6v-43h16.3 c6.7,0,11.5,1.1,14.3,3.4C347.7,21.7,349.2,25.4,349.2,30.4L349.2,30.4z M330.9,37.1c3.3,0,5.5-0.5,6.7-1.6 c1.2-1.1,1.8-2.8,1.8-5.1c0-2.3-0.6-3.9-1.8-4.8c-1.2-0.9-3.4-1.3-6.5-1.3h-7.2v12.7H330.9z"/> <polygon class="st1" points="387.4,16.1 387.4,24.7 366,24.7 366,33.5 385.3,33.5 385.3,41.7 366,41.7 366,50.6 388.1,50.6 388.1,59.1 356.4,59.1 356.4,16.1 "/> <path class="st1" d="M409.6,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.2-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C417.5,25,413.6,23.5,409.6,23.5z"/> <path class="st1" d="M447.2,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.1-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C455,25,451.1,23.5,447.2,23.5z"/> <path class="st2" d="M175.1,19.3c4.8,2.4,12,8.3,18.3,15.4c4.9-6.9,22.4-25,39.2-33.8c-21.3,18.3-27.9,28.7-38.9,47.6 C185.9,38,177.6,31,169.7,27.2L175.1,19.3z"/> <path class="st3" d="M175.1,19.3c4.8,2.4,12,8.3,18.3,15.4l-5,7.2c-6.2-6.9-12.6-11.8-18.7-14.7L175.1,19.3z"/> <path class="st4" d="M0.6,80.4h123.5v-1.9H0.6V80.4L0.6,80.4z M337.8,80.4h124.1v-1.9H337.8V80.4z"/> <path class="st5" d="M193.4,34.7c-1.9,2.3-3.6,4.8-5,7.2l5.3,6.6c1.6-2.7,2.9-4.9,4.5-7.6C197.2,39.1,194.7,35.9,193.4,34.7z"/> <path class="st1" d="M139.9,85h-4.8V74.1h4.2c0.7,0,1.4,0.1,1.9,0.3c0.5,0.2,0.9,0.4,1.2,0.7c0.5,0.6,0.7,1.2,0.7,1.9 c0,0.9-0.3,1.5-0.8,1.9c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0-0.2,0.1-0.4,0.2c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.6,1,0.6,1.7 c0,0.8-0.3,1.4-0.8,2C142.4,84.6,141.3,85,139.9,85L139.9,85z M136.9,78.6h2.3c1.3,0,2-0.5,2-1.4c0-0.5-0.2-0.9-0.5-1.1 c-0.3-0.2-0.8-0.3-1.5-0.3h-2.4V78.6L136.9,78.6z M136.9,83.3h2.9c0.7,0,1.2-0.1,1.6-0.3c0.4-0.2,0.5-0.6,0.5-1.2 c0-1-0.8-1.5-2.3-1.5h-2.7V83.3z"/> <polygon class="st1" points="159.5,74.1 159.5,75.8 153.7,75.8 153.7,78.7 159,78.7 159,80.3 153.7,80.3 153.7,83.2 159.7,83.2 159.7,85 151.9,85 151.9,74.1 "/> <polygon class="st1" points="172,75.8 172,85 170.2,85 170.2,75.8 166.9,75.8 166.9,74.1 175.3,74.1 175.3,75.8 "/> <polygon class="st1" points="187.2,75.8 187.2,85 185.4,85 185.4,75.8 182.1,75.8 182.1,74.1 190.5,74.1 190.5,75.8 "/> <polygon class="st1" points="206,74.1 206,75.8 200.2,75.8 200.2,78.7 205.4,78.7 205.4,80.3 200.2,80.3 200.2,83.2 206.2,83.2 206.2,85 198.3,85 198.3,74.1 "/> <path class="st1" d="M223,77.6c0,1.8-0.8,2.9-2.4,3.4l2.9,4h-2.3l-2.6-3.7h-2.4V85h-1.8V74.1h4.1c1.7,0,2.9,0.3,3.6,0.8 C222.7,75.5,223,76.4,223,77.6L223,77.6z M218.5,79.6c1,0,1.7-0.2,2.1-0.5c0.4-0.3,0.6-0.8,0.6-1.6s-0.2-1.2-0.6-1.5 c-0.4-0.3-1.1-0.4-2.1-0.4h-2.3v3.9H218.5z"/> <path class="st1" d="M240.5,85h-4.8V74.1h4.2c0.7,0,1.4,0.1,1.9,0.3c0.5,0.2,0.9,0.4,1.2,0.7c0.5,0.6,0.7,1.2,0.7,1.9 c0,0.9-0.3,1.5-0.8,1.9c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0-0.2,0.1-0.4,0.2c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.6,1,0.6,1.7 c0,0.8-0.3,1.4-0.8,2C243.1,84.6,242,85,240.5,85L240.5,85z M237.6,78.6h2.3c1.3,0,2-0.5,2-1.4c0-0.5-0.2-0.9-0.5-1.1 c-0.3-0.2-0.8-0.3-1.5-0.3h-2.4V78.6L237.6,78.6z M237.6,83.3h2.9c0.7,0,1.2-0.1,1.6-0.3c0.4-0.2,0.5-0.6,0.5-1.2 c0-1-0.8-1.5-2.3-1.5h-2.7V83.3z"/> <polygon class="st1" points="260.2,74.1 260.2,75.8 254.4,75.8 254.4,78.7 259.6,78.7 259.6,80.3 254.4,80.3 254.4,83.2 260.4,83.2 260.4,85 252.6,85 252.6,74.1 "/> <path class="st1" d="M276.1,75.5c-0.5,0-1,0.1-1.3,0.3c-0.3,0.2-0.5,0.5-0.5,1c0,0.4,0.2,0.8,0.5,1c0.3,0.2,1.1,0.5,2.2,0.8 c1.1,0.3,2,0.6,2.5,1.1c0.6,0.5,0.8,1.2,0.8,2.2c0,1-0.4,1.7-1.1,2.3c-0.7,0.6-1.7,0.9-2.8,0.9c-1.7,0-3.2-0.6-4.5-1.8l1.2-1.4 c1.1,1,2.2,1.4,3.4,1.4c0.6,0,1.1-0.1,1.4-0.4s0.5-0.6,0.5-1c0-0.4-0.2-0.7-0.5-1c-0.3-0.2-0.9-0.4-1.7-0.6 c-0.8-0.2-1.4-0.4-1.8-0.5c-0.4-0.2-0.8-0.4-1.1-0.6c-0.6-0.5-1-1.2-1-2.2c0-1,0.4-1.8,1.1-2.3c0.7-0.5,1.6-0.8,2.7-0.8 c0.7,0,1.4,0.1,2.1,0.3c0.7,0.2,1.3,0.6,1.8,1l-1,1.4c-0.3-0.3-0.8-0.5-1.3-0.7C277.2,75.6,276.7,75.5,276.1,75.5z"/> <path class="st1" d="M290,82.5l-1.1,2.5h-2l4.8-10.9h2l4.8,10.9h-2l-1.1-2.5H290L290,82.5z M294.7,80.8l-2-4.5l-2,4.5H294.7z"/> <polygon class="st1" points="307.7,75.8 307.7,78.8 312.5,78.8 312.5,80.5 307.7,80.5 307.7,85 305.8,85 305.8,74.1 313.1,74.1 313.1,75.8 "/> <polygon class="st1" points="328.7,74.1 328.7,75.8 322.9,75.8 322.9,78.7 328.1,78.7 328.1,80.3 322.9,80.3 322.9,83.2 328.9,83.2 328.9,85 321,85 321,74.1 "/> </g> </svg>')), 'mainnav' => 'HMENU', 'mainnav.' => array('wrap' => '<ul>|</ul>', 'entryLevel' => '0', 'excludeUidList' => '11,13,347', 'TMENU', '1.' => array('expAll' => '0', 'noBlur' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li class="before">|</li> |*| <li>|</li> |*| <li class="after">|</li>', 'ATagTitle.' => array('field' => 'title')), 'ACT.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li class="before">|</li> |*| <li>|</li> |*| <li class="after">|</li>', 'ATagTitle.' => array('field' => 'title'), 'ATagParams' => 'class="active"'), 'ACT' => '1')), 'meta' => 'TEXT', 'meta.' => array('X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'viewport' => 'width=device-width, initial-scale=1.0', 'description.' => array('field' => 'description', 'ifEmpty' => 'BBS Congress GmbH organisiert medizinische Kongresse, Fortbildungskurse und Symposien in der ganzen Schweiz. Wir organisieren Ihre Fortbildungsveranstaltung von Anfang bis zum Schluss und nehmen Ihnen auf dem Weg zu Ihrem erfolgreichen Anlass alle Aufgaben ab.'), 'og:site_name' => 'BBS Congress GmbH', 'og:site_name.' => array('insertData' => '1'), 'og:locale' => 'de_DE', 'og:locale:alternate.' => array('attribute' => 'property', 'value.' => array('fr_FR', 'en_EN'))), 'mmenu' => 'COA', 'mmenu.' => array('COA', '10.' => array('wrap' => '<nav id="mmenu-nav"><ul>|</ul></nav>', 'HMENU', '20.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'includeNotInMenu' => '0', 'TMENU', '1.' => array('expAll' => '1', 'noBlur' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT.' => array('wrapItemAndSub' => '<li class="Selected">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT' => '1'), 'TMENU', '2.' => array('expAll' => '1', 'noBlur' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT.' => array('wrapItemAndSub' => '<li class="Selected">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT' => '1', 'wrap' => '<ul>|</ul>'), 'TMENU', '3.' => array('expAll' => '1', 'noBlur' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT.' => array('wrapItemAndSub' => '<li class="Selected">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT' => '1', 'wrap' => '<ul>|</ul>')), 'HMENU', '30.' => array('special' => 'list', 'special.' => array('value' => '23'), 'includeNotInMenu' => '1', 'TMENU', '1.' => array('expAll' => '1', 'noBlur' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="mmenu_meta">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT.' => array('wrapItemAndSub' => '<li class="mmenu_meta Selected">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT' => '1')))), 'quicklinks' => 'COA', 'quicklinks.' => array('wrap' => '<ul>|</ul>', 'HMENU', '20.' => array('includeNotInMenu' => '1', 'special' => 'list', 'special.' => array('value' => '23'), 'TMENU', '1.' => array('noBlur' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li class="first">|</li> |*| <li>|</li> |*| <li>|</li>', 'ATagTitle.' => array('field' => 'title')), 'ACT.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li class="first">|</li> |*| <li>|</li> |*| <li>|</li>', 'ATagTitle.' => array('field' => 'title'), 'ATagParams' => 'class="active"'), 'ACT' => '1'))), 'site_footer' => 'COA', 'site_footer.' => array('COA', '10.' => array('stdWrap.' => array('typolink.' => array('parameter' => 't3://page?uid=1 - - "zurück zur Startseite"', 'ATagParams' => 'aria-label="zurück zur Startseite"')), 'TEXT', '10.' => array('value' => ' <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 465 86" style="enable-background:new 0 0 465 86;" xml:space="preserve"> <style type="text/css"> .st0{fill:#054B80;} .st1{fill:#4B494A;} .st2{fill-rule:evenodd;clip-rule:evenodd;fill:#0C88CA;} .st3{fill-rule:evenodd;clip-rule:evenodd;fill:#054B80;} .st4{fill-rule:evenodd;clip-rule:evenodd;fill:#4B494A;} .st5{fill-rule:evenodd;clip-rule:evenodd;fill:#0F66B0;} </style> <g> <path class="st0" d="M19.6,59.1H0.7v-43h16.7c2.9,0,5.4,0.3,7.5,1c2.1,0.7,3.7,1.6,4.8,2.8c1.9,2.2,2.9,4.7,2.9,7.5 c0,3.4-1.1,5.9-3.3,7.5c-0.7,0.6-1.3,0.9-1.5,1.1c-0.3,0.1-0.8,0.4-1.5,0.7c2.7,0.6,4.8,1.8,6.4,3.6c1.6,1.8,2.4,4.1,2.4,6.8 c0,3-1,5.6-3.1,7.9C29.6,57.8,25.5,59.1,19.6,59.1L19.6,59.1z M10.3,33.5h4.6c2.7,0,4.6-0.3,5.9-0.9c1.3-0.6,1.9-1.8,1.9-3.7 c0-1.9-0.6-3.2-1.8-3.8c-1.2-0.6-3.2-0.9-6-0.9h-4.6V33.5L10.3,33.5z M10.3,51h6.6c2.8,0,4.8-0.3,6.2-1c1.4-0.7,2.1-2,2.1-4 c0-2-0.7-3.3-2.2-3.9c-1.5-0.6-3.8-1-7-1h-5.7V51z"/> <path class="st0" d="M59.1,59.1H40.2v-43H57c2.9,0,5.4,0.3,7.5,1c2.1,0.7,3.7,1.6,4.8,2.8c1.9,2.2,2.9,4.7,2.9,7.5 c0,3.4-1.1,5.9-3.3,7.5c-0.7,0.6-1.3,0.9-1.5,1.1c-0.3,0.1-0.8,0.4-1.5,0.7c2.7,0.6,4.8,1.8,6.4,3.6c1.6,1.8,2.4,4.1,2.4,6.8 c0,3-1,5.6-3.1,7.9C69.1,57.8,65,59.1,59.1,59.1L59.1,59.1z M49.9,33.5h4.6c2.7,0,4.6-0.3,5.9-0.9c1.3-0.6,1.9-1.8,1.9-3.7 c0-1.9-0.6-3.2-1.8-3.8c-1.2-0.6-3.2-0.9-6-0.9h-4.6V33.5L49.9,33.5z M49.9,51h6.6c2.7,0,4.8-0.3,6.2-1c1.4-0.7,2.1-2,2.1-4 c0-2-0.7-3.3-2.2-3.9c-1.5-0.6-3.8-1-7-1h-5.7V51z"/> <path class="st0" d="M93.9,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.2-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C101.7,25,97.9,23.5,93.9,23.5z"/> <path class="st1" d="M150.4,50.6c4.7,0,8.6-1.9,11.6-5.6l6.2,6.3c-4.9,5.5-10.6,8.3-17.3,8.3c-6.6,0-12.1-2.1-16.4-6.3 c-4.3-4.2-6.4-9.5-6.4-15.9c0-6.4,2.2-11.7,6.6-16c4.4-4.3,9.7-6.4,16-6.4c7.1,0,13,2.7,17.7,8.1l-6,6.8c-3-3.8-6.8-5.7-11.3-5.7 c-3.6,0-6.7,1.2-9.3,3.5c-2.6,2.4-3.8,5.5-3.8,9.5c0,4,1.2,7.2,3.6,9.6C144,49.4,146.9,50.6,150.4,50.6z"/> <path class="st1" d="M206,37.4c0-1.5-0.2-2.8-0.5-4.1c2-2.9,4.2-5.7,6.5-8.6c2.5,3.6,3.8,7.8,3.8,12.6c0,6.3-2.2,11.6-6.5,15.9 c-4.4,4.2-9.7,6.4-16.1,6.4c-6.4,0-11.7-2.1-16.1-6.4c-4.4-4.2-6.5-9.5-6.5-15.9c0-2.2,0.3-4.4,0.8-6.3c3,1.5,6,3.5,9,6l0,0.4 c0,3.8,1.2,7.1,3.7,9.8c2.5,2.7,5.5,4,9.1,4c0.2,0,0.4,0,0.6,0l0.6,0c3.1-0.3,5.7-1.6,7.9-4C204.7,44.5,206,41.2,206,37.4L206,37.4 z M199.1,25c1.9-2,4-4.2,6.4-6.5c-3.6-2.3-7.7-3.4-12.3-3.4c-5.2,0-9.8,1.4-13.6,4.3c2.3,1.6,4.7,3.6,7.2,5.9 c1.9-1.2,4.1-1.8,6.5-1.8C195.4,23.5,197.4,24,199.1,25z"/> <polygon class="st1" points="252.2,16.1 261.9,16.1 261.9,59.1 252.2,59.1 231.7,32.2 231.7,59.1 222.1,59.1 222.1,16.1 231.1,16.1 252.2,43.8 "/> <path class="st1" d="M297.8,37.2h9.7v15.3c-4.3,4.8-10.2,7.1-17.7,7.1c-6.3,0-11.6-2.1-15.9-6.3c-4.3-4.2-6.4-9.5-6.4-15.9 c0-6.4,2.2-11.7,6.6-16c4.4-4.3,9.6-6.4,15.8-6.4c6.2,0,11.5,2,16.1,6.1l-5,7.2c-1.9-1.7-3.7-2.8-5.3-3.5c-1.6-0.6-3.4-1-5.3-1 c-3.7,0-6.7,1.2-9.2,3.7c-2.5,2.5-3.8,5.8-3.8,9.8s1.2,7.3,3.6,9.8c2.4,2.4,5.3,3.7,8.6,3.7c3.3,0,6.1-0.6,8.3-1.9V37.2z"/> <path class="st1" d="M349.2,30.4c0,6.9-2.7,11.3-8.2,13.4l10.9,15.4H340l-9.5-13.7h-6.7v13.7h-9.6v-43h16.3 c6.7,0,11.5,1.1,14.3,3.4C347.7,21.7,349.2,25.4,349.2,30.4L349.2,30.4z M330.9,37.1c3.3,0,5.5-0.5,6.7-1.6 c1.2-1.1,1.8-2.8,1.8-5.1c0-2.3-0.6-3.9-1.8-4.8c-1.2-0.9-3.4-1.3-6.5-1.3h-7.2v12.7H330.9z"/> <polygon class="st1" points="387.4,16.1 387.4,24.7 366,24.7 366,33.5 385.3,33.5 385.3,41.7 366,41.7 366,50.6 388.1,50.6 388.1,59.1 356.4,59.1 356.4,16.1 "/> <path class="st1" d="M409.6,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.2-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C417.5,25,413.6,23.5,409.6,23.5z"/> <path class="st1" d="M447.2,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.1-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C455,25,451.1,23.5,447.2,23.5z"/> <path class="st2" d="M175.1,19.3c4.8,2.4,12,8.3,18.3,15.4c4.9-6.9,22.4-25,39.2-33.8c-21.3,18.3-27.9,28.7-38.9,47.6 C185.9,38,177.6,31,169.7,27.2L175.1,19.3z"/> <path class="st3" d="M175.1,19.3c4.8,2.4,12,8.3,18.3,15.4l-5,7.2c-6.2-6.9-12.6-11.8-18.7-14.7L175.1,19.3z"/> <path class="st4" d="M0.6,80.4h123.5v-1.9H0.6V80.4L0.6,80.4z M337.8,80.4h124.1v-1.9H337.8V80.4z"/> <path class="st5" d="M193.4,34.7c-1.9,2.3-3.6,4.8-5,7.2l5.3,6.6c1.6-2.7,2.9-4.9,4.5-7.6C197.2,39.1,194.7,35.9,193.4,34.7z"/> <path class="st1" d="M139.9,85h-4.8V74.1h4.2c0.7,0,1.4,0.1,1.9,0.3c0.5,0.2,0.9,0.4,1.2,0.7c0.5,0.6,0.7,1.2,0.7,1.9 c0,0.9-0.3,1.5-0.8,1.9c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0-0.2,0.1-0.4,0.2c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.6,1,0.6,1.7 c0,0.8-0.3,1.4-0.8,2C142.4,84.6,141.3,85,139.9,85L139.9,85z M136.9,78.6h2.3c1.3,0,2-0.5,2-1.4c0-0.5-0.2-0.9-0.5-1.1 c-0.3-0.2-0.8-0.3-1.5-0.3h-2.4V78.6L136.9,78.6z M136.9,83.3h2.9c0.7,0,1.2-0.1,1.6-0.3c0.4-0.2,0.5-0.6,0.5-1.2 c0-1-0.8-1.5-2.3-1.5h-2.7V83.3z"/> <polygon class="st1" points="159.5,74.1 159.5,75.8 153.7,75.8 153.7,78.7 159,78.7 159,80.3 153.7,80.3 153.7,83.2 159.7,83.2 159.7,85 151.9,85 151.9,74.1 "/> <polygon class="st1" points="172,75.8 172,85 170.2,85 170.2,75.8 166.9,75.8 166.9,74.1 175.3,74.1 175.3,75.8 "/> <polygon class="st1" points="187.2,75.8 187.2,85 185.4,85 185.4,75.8 182.1,75.8 182.1,74.1 190.5,74.1 190.5,75.8 "/> <polygon class="st1" points="206,74.1 206,75.8 200.2,75.8 200.2,78.7 205.4,78.7 205.4,80.3 200.2,80.3 200.2,83.2 206.2,83.2 206.2,85 198.3,85 198.3,74.1 "/> <path class="st1" d="M223,77.6c0,1.8-0.8,2.9-2.4,3.4l2.9,4h-2.3l-2.6-3.7h-2.4V85h-1.8V74.1h4.1c1.7,0,2.9,0.3,3.6,0.8 C222.7,75.5,223,76.4,223,77.6L223,77.6z M218.5,79.6c1,0,1.7-0.2,2.1-0.5c0.4-0.3,0.6-0.8,0.6-1.6s-0.2-1.2-0.6-1.5 c-0.4-0.3-1.1-0.4-2.1-0.4h-2.3v3.9H218.5z"/> <path class="st1" d="M240.5,85h-4.8V74.1h4.2c0.7,0,1.4,0.1,1.9,0.3c0.5,0.2,0.9,0.4,1.2,0.7c0.5,0.6,0.7,1.2,0.7,1.9 c0,0.9-0.3,1.5-0.8,1.9c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0-0.2,0.1-0.4,0.2c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.6,1,0.6,1.7 c0,0.8-0.3,1.4-0.8,2C243.1,84.6,242,85,240.5,85L240.5,85z M237.6,78.6h2.3c1.3,0,2-0.5,2-1.4c0-0.5-0.2-0.9-0.5-1.1 c-0.3-0.2-0.8-0.3-1.5-0.3h-2.4V78.6L237.6,78.6z M237.6,83.3h2.9c0.7,0,1.2-0.1,1.6-0.3c0.4-0.2,0.5-0.6,0.5-1.2 c0-1-0.8-1.5-2.3-1.5h-2.7V83.3z"/> <polygon class="st1" points="260.2,74.1 260.2,75.8 254.4,75.8 254.4,78.7 259.6,78.7 259.6,80.3 254.4,80.3 254.4,83.2 260.4,83.2 260.4,85 252.6,85 252.6,74.1 "/> <path class="st1" d="M276.1,75.5c-0.5,0-1,0.1-1.3,0.3c-0.3,0.2-0.5,0.5-0.5,1c0,0.4,0.2,0.8,0.5,1c0.3,0.2,1.1,0.5,2.2,0.8 c1.1,0.3,2,0.6,2.5,1.1c0.6,0.5,0.8,1.2,0.8,2.2c0,1-0.4,1.7-1.1,2.3c-0.7,0.6-1.7,0.9-2.8,0.9c-1.7,0-3.2-0.6-4.5-1.8l1.2-1.4 c1.1,1,2.2,1.4,3.4,1.4c0.6,0,1.1-0.1,1.4-0.4s0.5-0.6,0.5-1c0-0.4-0.2-0.7-0.5-1c-0.3-0.2-0.9-0.4-1.7-0.6 c-0.8-0.2-1.4-0.4-1.8-0.5c-0.4-0.2-0.8-0.4-1.1-0.6c-0.6-0.5-1-1.2-1-2.2c0-1,0.4-1.8,1.1-2.3c0.7-0.5,1.6-0.8,2.7-0.8 c0.7,0,1.4,0.1,2.1,0.3c0.7,0.2,1.3,0.6,1.8,1l-1,1.4c-0.3-0.3-0.8-0.5-1.3-0.7C277.2,75.6,276.7,75.5,276.1,75.5z"/> <path class="st1" d="M290,82.5l-1.1,2.5h-2l4.8-10.9h2l4.8,10.9h-2l-1.1-2.5H290L290,82.5z M294.7,80.8l-2-4.5l-2,4.5H294.7z"/> <polygon class="st1" points="307.7,75.8 307.7,78.8 312.5,78.8 312.5,80.5 307.7,80.5 307.7,85 305.8,85 305.8,74.1 313.1,74.1 313.1,75.8 "/> <polygon class="st1" points="328.7,74.1 328.7,75.8 322.9,75.8 322.9,78.7 328.1,78.7 328.1,80.3 322.9,80.3 322.9,83.2 328.9,83.2 328.9,85 321,85 321,74.1 "/> </g> </svg>')), 'TEXT', '20.' => array('wrap' => '<address><div itemscope itemtype="http://schema.org/Organization">|</div></address>', 'value' => ' <span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="name">BBS Congress GmbH</span> <span itemprop="streetAddress">Rabbentalstrasse&nbsp;83</span> <span itemprop="postalCode" style="padding:0 0 0 10px;">CH-3013</span> <span itemprop="addressLocality" style="padding:0 10px 0 0;">Bern</span> <span itemprop="addressCountry" style="display:none">Switzerland</span> </span> <div class="phone"> T&nbsp;<span itemprop="telephone" style="padding:0 20px 0 0;">+41&nbsp;31&nbsp;331&nbsp;82&nbsp;75</span> F&nbsp;<span itemprop="faxNumber">+41&nbsp;31&nbsp;332&nbsp;98&nbsp;79</span> </div>'), 'TEXT', '30.' => array('wrap' => '<span>|</span>', 'value' => 'Kontakt:'), 'TEXT', '40.' => array('typolink.' => array('parameter' => 'peter.salchli@bbscongress.ch', 'title' => 'E-mail an Peter Salchli'), 'value' => 'Peter Salchli', 'wrap' => '<span itemprop="email">|</span>'), 'TEXT', '50.' => array('typolink.' => array('parameter' => 'adrian.koenig@bbscongress.ch', 'title' => 'E-mail an Adrian König'), 'value' => 'Adrian König', 'wrap' => '<span itemprop="email">|</span>'), 'TEXT', '60.' => array('typolink.' => array('parameter' => '945', 'title' => 'Impressum / Datenschutz'), 'value' => 'Impressum / Datenschutz', 'wrap' => '<div style="margin:1.25em 0 0 0;">|</div>'))), 'lib.dynamicContent', 'dynamicContent')
in /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/Standard_action_index_cd78ff861cf5e0cb0fcb1275c0cdcc39c3cf4731.php line 58
$array3 = array();
$array3['colPos'] = 0;
$arguments1['data'] = $array3;
$renderChildrenClosure2 = ($arguments1['data'] !== null) ? function() use ($arguments1) { return $arguments1['data']; } : $renderChildrenClosure2;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
';

at Standard_action_index_cd78ff861cf5e0cb0fcb1275c0cdcc39c3cf4731->section_4f9be057f0ea5d2ba72fd2c810e8d7b9aa98b469(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 172
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Content', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/layout_ContentMain_html_e20a6d430fda43089dc70e63246823eff992eb04.php line 161
$arguments11['contentAs'] = NULL;
$arguments11['debug'] = true;
$arguments11['section'] = 'Content';

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

$output0 .= '
      </div>
    </div>
at layout_ContentMain_html_e20a6d430fda43089dc70e63246823eff992eb04->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/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('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__ContentOverview' => 'TEXT', 'pagets__ContentOverview.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentOverview.html'), 'pagets__ContentMain' => 'TEXT', 'pagets__ContentMain.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html')))), 'layoutRootPaths.' => array('EXT:klinksite/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:klinksite/Resources/Private/Partials/'), 'variables.' => array(), 'dataProcessing.' => array()))
in /home/bbscongr/public_html/typo3-v11/public/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('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__ContentOverview' => 'TEXT', 'pagets__ContentOverview.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentOverview.html'), 'pagets__ContentMain' => 'TEXT', 'pagets__ContentMain.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html')))), 'layoutRootPaths.' => array('EXT:klinksite/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:klinksite/Resources/Private/Partials/'), 'variables.' => array(), 'dataProcessing.' => array()))
in /home/bbscongr/public_html/typo3-v11/public/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('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__ContentOverview' => 'TEXT', 'pagets__ContentOverview.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentOverview.html'), 'pagets__ContentMain' => 'TEXT', 'pagets__ContentMain.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html')))), 'layoutRootPaths.' => array('EXT:klinksite/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:klinksite/Resources/Private/Partials/'), 'variables.' => array(), 'dataProcessing.' => array()), '10')
in /home/bbscongr/public_html/typo3-v11/public/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('includeJSFooter.' => array('powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'powermailForm.' => array('defer' => '1'), 'mmenu' => 'EXT:klinksite/Resources/Public/JavaScript/mmenu/mmenu.js', 'mmenu.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'script' => 'EXT:klinksite/Resources/Public/JavaScript/script.js', 'script.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0')), 'typeNum' => '0', 'meta' => 'TEXT', 'meta.' => array('X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'viewport' => 'width=device-width, initial-scale=1.0', 'description.' => array('field' => 'description', 'ifEmpty' => 'BBS Congress GmbH organisiert medizinische Kongresse, Fortbildungskurse und Symposien in der ganzen Schweiz. Wir organisieren Ihre Fortbildungsveranstaltung von Anfang bis zum Schluss und nehmen Ihnen auf dem Weg zu Ihrem erfolgreichen Anlass alle Aufgaben ab.'), 'og:site_name' => 'BBS Congress GmbH', 'og:site_name.' => array('insertData' => '1'), 'og:locale' => 'de_DE', 'og:locale:alternate.' => array('attribute' => 'property', 'value.' => array('fr_FR', 'en_EN'))), 'includeCSSLibs.' => array('fancyboxCss' => 'https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.css', 'fancyboxCss.' => array('external' => '1')), 'includeCSS.' => array('mainCss' => 'EXT:klinksite/Resources/Public/Css/main.css', 'mainCss.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all'), 'mmenu' => 'EXT:klinksite/Resources/Public/JavaScript/mmenu/mmenu.css', 'mmenu.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all'), 'powermailCss' => 'EXT:klinksite/Resources/Public/Css/powermail.css', 'powermailCss.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all')), 'includeJSFooterlibs.' => array('jqueryJs' => 'https://code.jquery.com/jquery-3.6.0.min.js', 'jqueryJs.' => array('external' => '1', 'disableCompression' => '0', 'excludeFromConcatenation' => '0', 'forceOnTop' => '1', 'crossorigin' => 'anonymous', 'integrity' => 'sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4='), 'fancyboxJs' => 'https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.umd.js', 'fancyboxJs.' => array('external' => '1', 'disableCompression' => '0', 'excludeFromConcatenation' => '0')), 'headerData.' => array('TEXT', '84113002.' => array('value' => ' <script> (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\'); ga(\'create\', \'UA-1808724-13\', \'auto\'); ga(\'send\', \'pageview\'); </script>'), 'TEXT', '200.' => array('value' => ' <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="manifest" href="/site.webmanifest" crossorigin="use-credentials"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><meta name="msapplication-TileColor" content="#da532c"><meta name="theme-color" content="#ffffff">')), 'FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__ContentOverview' => 'TEXT', 'pagets__ContentOverview.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentOverview.html'), 'pagets__ContentMain' => 'TEXT', 'pagets__ContentMain.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html')))), 'layoutRootPaths.' => array('EXT:klinksite/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:klinksite/Resources/Private/Partials/'), 'variables.' => array(), 'dataProcessing.' => array()), 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('stdWrap.' => array('wrap' => '<body | >', 'case' => 'lower'), 'COA', '10.' => array('stdWrap.' => array('noTrimWrap' => '| class="level-12 |"|'), 'TEXT', '10.' => array('field' => 'layout', 'wrap' => 'layout-|', 'noTrimWrap' => '|| |', 'required' => '1'), 'TEXT', '20.' => array('field' => 'sys_language_uid', 'wrap' => 'lang-|', 'noTrimWrap' => '|| |', 'required' => '1'), 'TEXT', '30.' => array('field' => 'uid', 'noTrimWrap' => '|page-||')), 'COA', '20.' => array('stdWrap.' => array('noTrimWrap' => '| data-p="|"|'), 'TEXT', '10.' => array('field' => 'uid')))), '')
in /home/bbscongr/public_html/typo3-v11/public/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('includeJSFooter.' => array('powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'powermailForm.' => array('defer' => '1'), 'mmenu' => 'EXT:klinksite/Resources/Public/JavaScript/mmenu/mmenu.js', 'mmenu.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'script' => 'EXT:klinksite/Resources/Public/JavaScript/script.js', 'script.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0')), 'typeNum' => '0', 'meta' => 'TEXT', 'meta.' => array('X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'viewport' => 'width=device-width, initial-scale=1.0', 'description.' => array('field' => 'description', 'ifEmpty' => 'BBS Congress GmbH organisiert medizinische Kongresse, Fortbildungskurse und Symposien in der ganzen Schweiz. Wir organisieren Ihre Fortbildungsveranstaltung von Anfang bis zum Schluss und nehmen Ihnen auf dem Weg zu Ihrem erfolgreichen Anlass alle Aufgaben ab.'), 'og:site_name' => 'BBS Congress GmbH', 'og:site_name.' => array('insertData' => '1'), 'og:locale' => 'de_DE', 'og:locale:alternate.' => array('attribute' => 'property', 'value.' => array('fr_FR', 'en_EN'))), 'includeCSSLibs.' => array('fancyboxCss' => 'https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.css', 'fancyboxCss.' => array('external' => '1')), 'includeCSS.' => array('mainCss' => 'EXT:klinksite/Resources/Public/Css/main.css', 'mainCss.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all'), 'mmenu' => 'EXT:klinksite/Resources/Public/JavaScript/mmenu/mmenu.css', 'mmenu.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all'), 'powermailCss' => 'EXT:klinksite/Resources/Public/Css/powermail.css', 'powermailCss.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all')), 'includeJSFooterlibs.' => array('jqueryJs' => 'https://code.jquery.com/jquery-3.6.0.min.js', 'jqueryJs.' => array('external' => '1', 'disableCompression' => '0', 'excludeFromConcatenation' => '0', 'forceOnTop' => '1', 'crossorigin' => 'anonymous', 'integrity' => 'sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4='), 'fancyboxJs' => 'https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.umd.js', 'fancyboxJs.' => array('external' => '1', 'disableCompression' => '0', 'excludeFromConcatenation' => '0')), 'headerData.' => array('TEXT', '84113002.' => array('value' => ' <script> (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\'); ga(\'create\', \'UA-1808724-13\', \'auto\'); ga(\'send\', \'pageview\'); </script>'), 'TEXT', '200.' => array('value' => ' <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="manifest" href="/site.webmanifest" crossorigin="use-credentials"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><meta name="msapplication-TileColor" content="#da532c"><meta name="theme-color" content="#ffffff">')), 'FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__ContentOverview' => 'TEXT', 'pagets__ContentOverview.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentOverview.html'), 'pagets__ContentMain' => 'TEXT', 'pagets__ContentMain.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html')))), 'layoutRootPaths.' => array('EXT:klinksite/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:klinksite/Resources/Private/Partials/'), 'variables.' => array(), 'dataProcessing.' => array()), 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('stdWrap.' => array('wrap' => '<body | >', 'case' => 'lower'), 'COA', '10.' => array('stdWrap.' => array('noTrimWrap' => '| class="level-12 |"|'), 'TEXT', '10.' => array('field' => 'layout', 'wrap' => 'layout-|', 'noTrimWrap' => '|| |', 'required' => '1'), 'TEXT', '20.' => array('field' => 'sys_language_uid', 'wrap' => 'lang-|', 'noTrimWrap' => '|| |', 'required' => '1'), 'TEXT', '30.' => array('field' => 'uid', 'noTrimWrap' => '|page-||')), 'COA', '20.' => array('stdWrap.' => array('noTrimWrap' => '| data-p="|"|'), 'TEXT', '10.' => array('field' => 'uid')))))
in /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/typo3conf/ext/secure_downloads/Classes/Middleware/TokenRefreshMiddleware.php line 112
                return $response->withBody($body);
            }
        }

        return $handler->handle($request);
    }
}
at Leuchtfeuer\SecureDownloads\Middleware\TokenRefreshMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

        $body = $response->getBody();
        $body->rewind();
        $contents = $body->getContents();
at FluidTYPO3\Vhs\Middleware\AssetInclusion->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

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

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

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

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

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/adminpanel/Classes/Middleware/SqlLogging.php line 58
        if (StateUtility::isActivatedForUser() && StateUtility::isOpen()) {
            $connection = $this->connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME);
            $connection->getConfiguration()->setSQLLogger(GeneralUtility::makeInstance(DoctrineSqlLogger::class));
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\SqlLogging->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php line 55
                MainController::class
            );
            $request = $adminPanelController->initialize($request);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bbscongr/public_html/typo3-v11/public/typo3conf/ext/secure_downloads/Classes/Middleware/FileDeliveryMiddleware.php line 59

            return GeneralUtility::makeInstance(FileDelivery::class)->deliver($jwt, $request);
        }

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

    /**
     * @param ServerRequestInterface $request The request interface
at Leuchtfeuer\SecureDownloads\Middleware\FileDeliveryMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

    /**
     * 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 /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /home/bbscongr/public_html/typo3-v11/public/index.php line 21
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});

(2/2) #1407060572 TYPO3Fluid\Fluid\Core\Parser\Exception

The ViewHelper "<i:image>" could not be resolved. Based on your spelling, the system would load the class "B13\Picture\ViewHelpers\ImageViewHelper", however this class does not exist.

in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperResolver.php line 249
        if (!isset($this->resolvedViewHelperClassNames[$namespaceIdentifier][$methodIdentifier])) {
            $resolvedViewHelperClassName = $this->resolveViewHelperName($namespaceIdentifier, $methodIdentifier);
            $actualViewHelperClassName = implode('\\', array_map('ucfirst', explode('.', $resolvedViewHelperClassName)));
            if (false === class_exists($actualViewHelperClassName) || $actualViewHelperClassName === false) {
                throw new ParserException(sprintf(
                    'The ViewHelper "<%s:%s>" could not be resolved.' . chr(10) .
                    'Based on your spelling, the system would load the class "%s", however this class does not exist.',
                    $namespaceIdentifier,
                    $methodIdentifier,
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperResolver->resolveViewHelperClassName('i', 'image')
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperResolver.php line 273
     * @return ViewHelperInterface
     */
    public function createViewHelperInstance($namespace, $viewHelperShortName)
    {
        $className = $this->resolveViewHelperClassName($namespace, $viewHelperShortName);
        return $this->createViewHelperInstanceFromClassName($className);
    }

    /**
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperResolver->createViewHelperInstance('i', 'image')
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 344
        if (!$viewHelperResolver->isNamespaceValid($namespaceIdentifier)) {
            throw new UnknownNamespaceException('Unknown Namespace: ' . $namespaceIdentifier);
        }

        $viewHelper = $viewHelperResolver->createViewHelperInstance($namespaceIdentifier, $methodIdentifier);
        $argumentDefinitions = $viewHelper->prepareArguments();
        $viewHelperNode = $this->initializeViewHelperAndAddItToStack(
            $state,
            $namespaceIdentifier,
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->openingViewHelperTagHandler(object(TYPO3Fluid\Fluid\Core\Parser\ParsingState), 'i', 'image', ' image="{file}" addWebp="1" useRetina="0" width="{dimensions.width}" pictureClass="" class="w-auto" crop="{image.crop}" loading="{settings.media.lazyLoading}" alt="{file.alternative}" ', true, '<i:image image="{file}" addWebp="1" useRetina="0" width="{dimensions.width}" pictureClass="" class="w-auto" crop="{image.crop}" loading="{settings.media.lazyLoading}" alt="{file.alternative}" />')
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 283

            if (preg_match(Patterns::$SCAN_PATTERN_TEMPLATE_VIEWHELPERTAG, $templateElement, $matchedVariables) > 0) {
                try {
                    if ($this->openingViewHelperTagHandler(
                        $state,
                        $matchedVariables['NamespaceIdentifier'],
                        $matchedVariables['MethodIdentifier'],
                        $matchedVariables['Attributes'],
                        ($matchedVariables['Selfclosing'] === '' ? false : true),
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->buildObjectTree(array(' ', '<i:image image="{file}" addWebp="1" useRetina="0" width="{dimensions.width}" pictureClass="" class="w-auto" crop="{image.crop}" loading="{settings.media.lazyLoading}" alt="{file.alternative}" />', ''), 2)
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 143

            $templateString = $this->preProcessTemplateSource($templateString);

            $splitTemplate = $this->splitTemplateAtDynamicTags($templateString);
            $parsingState = $this->buildObjectTree($splitTemplate, self::CONTEXT_OUTSIDE_VIEWHELPER_ARGUMENTS);
        } catch (Exception $error) {
            throw $this->createParsingRelatedExceptionWithContext($error, $templateIdentifier);
        }
        $this->parsedTemplates[$templateIdentifier] = $parsingState;
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->parse(' <i:image image="{file}" addWebp="1" useRetina="0" width="{dimensions.width}" pictureClass="" class="w-auto" crop="{image.crop}" loading="{settings.media.lazyLoading}" alt="{file.alternative}" />', 'partial_Media/Rendering/Image_1d484241c67b9e363c0c91e6ba5fa9970c96d054')
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 211
     */
    protected function parseTemplateSource($templateIdentifier, $templateSourceClosure)
    {
        $parsedTemplate = $this->parse(
            $templateSourceClosure($this, $this->renderingContext->getTemplatePaths()),
            $templateIdentifier
        );
        $parsedTemplate->setIdentifier($templateIdentifier);
        $this->parsedTemplates[$templateIdentifier] = $parsedTemplate;
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->parseTemplateSource('partial_Media/Rendering/Image_1d484241c67b9e363c0c91e6ba5fa9970c96d054', object(Closure))
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 191
            if ($parsedTemplate instanceof UncompilableTemplateInterface) {
                $parsedTemplate = $this->parseTemplateSource($templateIdentifier, $templateSourceClosure);
            }
        } else {
            $parsedTemplate = $this->parseTemplateSource($templateIdentifier, $templateSourceClosure);
            try {
                $compiler->store($templateIdentifier, $parsedTemplate);
            } catch (StopCompilingException $stop) {
                $this->renderingContext->getErrorHandler()->handleCompilerError($stop);
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->getOrParseAndStoreTemplate('partial_Media/Rendering/Image_1d484241c67b9e363c0c91e6ba5fa9970c96d054', object(Closure))
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 305
            $parsedPartial = $renderingContext->getTemplateParser()->getOrParseAndStoreTemplate(
                $templatePaths->getPartialIdentifier($partialName),
                function ($parent, TemplatePaths $paths) use ($partialName) {
                    return $paths->getPartialSource($partialName);
                }
            );
        } catch (PassthroughSourceException $error) {
            return $error->getSource();
        } catch (InvalidTemplateResourceException $error) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('Media/Rendering/Image', null, array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), false)
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 170
            $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' => 'Media/Rendering/Image', 'delegate' => null, 'renderable' => null, 'arguments' => array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f.php line 434
$array14 = array (
);$array11['settings'] = $renderingContext->getVariableProvider()->getByPath('settings', $array14);
$arguments9['arguments'] = $array11;

$output8 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments9, $renderChildrenClosure10, $renderingContext);

$output8 .= '
            ';
return $output8;
at partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f->{closure}()
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/fluid/Classes/ViewHelpers/Link/TypolinkViewHelper.php line 146
        // expose internal typoLink configuration to Fluid child context
        $variableProvider = $renderingContext->getVariableProvider();
        $variableProvider->add($partsAs, $typoLinkConfiguration);
        // If no link has to be rendered, the inner content will be returned as such
        $content = (string)$renderChildrenClosure();
        // clean up exposed variables
        $variableProvider->remove($partsAs);

        if ($parameter) {
at TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic(array('parameter' => 't3://file?uid=7166 _blank', 'target' => '', 'class' => '', 'title' => '', 'language' => null, 'additionalParams' => '', 'additionalAttributes' => array(), 'addQueryString' => false, 'addQueryStringMethod' => null, 'addQueryStringExclude' => '', 'absolute' => false, 'parts-as' => 'typoLinkParts', 'textWrap' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f.php line 460
);$arguments4['parameter'] = $renderingContext->getVariableProvider()->getByPath('file.link', $array6);
$array7 = array (
);$arguments4['title'] = $renderingContext->getVariableProvider()->getByPath('file.title', $array7);

$output3 .= TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output3 .= '
        ';
return $output3;
at partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f->{closure}()
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f.php line 707
        ';
return $output15;
};

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

$output0 .= '
    ';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
at partial_Media_Type_Image_40a159586fa7b3d9d61f5f604e521e7de90d456f->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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('Media/Type/Image', null, array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), false)
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 170
            $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' => 'Media/Type/Image', 'delegate' => null, 'renderable' => null, 'arguments' => array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b.php line 317
$array26 = array (
);$array22['settings'] = $renderingContext->getVariableProvider()->getByPath('settings', $array26);
$arguments20['arguments'] = $array22;

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

$output19 .= '
    ';
return $output19;
at partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b->{closure}()
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b.php line 322

$output19 .= '
    ';
return $output19;
});
}
}, array($arguments1));

$output0 .= '
at partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b->{closure}(array('expression' => 5))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b.php line 324
    ';
return $output19;
});
}
}, array($arguments1));

$output0 .= '

';
at partial_Media_Type_4bfb709c9520be4bd07aaadcf2be9f7849ea267b->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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('Media/Type', null, array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), false)
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 170
            $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' => 'Media/Type', 'delegate' => null, 'renderable' => null, 'arguments' => array('file' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), '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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')))), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16.php line 169
$array39 = array (
);$array35['settings'] = $renderingContext->getVariableProvider()->getByPath('settings', $array39);
$arguments33['arguments'] = $array35;

$output32 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments33, $renderChildrenClosure34, $renderingContext);

$output32 .= '
                        </div>
                    ';
at partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16->{closure}()
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16.php line 195
     $renderingContext
    );
$arguments27['__thenClosure'] = $renderChildrenClosure28;

$output26 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments27, $renderChildrenClosure28, $renderingContext);

$output26 .= '
                ';
return $output26;
at partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16->{closure}()
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/ForViewHelper.php line 144
                $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' => array(array('media' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0))), 'as' => 'column', 'key' => null, 'reverse' => false, 'iteration' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16.php line 211
$array25 = array (
);$arguments23['each'] = $renderingContext->getVariableProvider()->getByPath('row.columns', $array25);
$arguments23['as'] = 'column';

$output22 .= TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic($arguments23, $renderChildrenClosure24, $renderingContext);

$output22 .= '
            </div>
        ';
at partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16->{closure}()
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/ForViewHelper.php line 144
                $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' => array(array('columns' => array(array('media' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0))))), 'as' => 'row', 'key' => null, 'reverse' => false, 'iteration' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16.php line 228
$array21 = array (
);$arguments19['each'] = $renderingContext->getVariableProvider()->getByPath('gallery.rows', $array21);
$arguments19['as'] = 'row';

$output6 .= TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic($arguments19, $renderChildrenClosure20, $renderingContext);

$output6 .= '
        ';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
at partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16->{closure}()
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16.php line 285
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

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

$output0 .= '

';
at partial_Media_Gallery_6825002847ad03c3fa4a95f029077b118634ba16->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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('Media/Gallery', null, array('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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0'))), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), 'current' => null, 'files' => array(object(TYPO3\CMS\Core\Resource\FileReference)), 'gallery' => array('position' => array('horizontal' => 'right', 'vertical' => 'intext', 'noWrap' => true), 'width' => 320, 'count' => array('files' => 1, 'columns' => 1, 'rows' => 1), 'columnSpacing' => 25, 'border' => array('enabled' => false, 'width' => 1, 'padding' => 0), 'rows' => array(array('columns' => array(array('media' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0))))))), false)
in /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 170
            $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' => 'Media/Gallery', 'delegate' => null, 'renderable' => null, 'arguments' => array('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' => '1280m', 'height' => '600m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '1'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0'))), 'data' => array('uid' => 585, 'pid' => 581, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1654006782, 'crdate' => 1639494395, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 256, 'CType' => 'textpic', 'header' => 'Jahrestagung pädiatrie schweiz 2022', 'header_position' => '', 'bodytext' => '<h2>2./3. Juni 2022<br /> Messe Luzern</h2> <p><strong><a href="t3://file?uid=7166" target="_blank">- Programm</a></strong></p> <p>Bitte melden Sie sich vor Ort in Luzern an.<br /> <strong>Online-Anmeldung geschlossen, 31.05.2022, 16h15.</strong><br /> <br /> <strong><a href="t3://page?uid=646" target="_blank">- Informationen für Aussteller</a></strong></p>', 'image' => 1, 'imagewidth' => 0, 'imageorient' => 25, 'imagecols' => 1, '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' => '3', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"bodytext":null,"image":null,"imageborder":null,"imageorient":null,"imagecols":null,"image_zoom":null,"sectionIndex":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_containeritems_a_stayopen' => null, 'tx_containeritems_a_firstopen' => null), 'current' => null, 'files' => array(object(TYPO3\CMS\Core\Resource\FileReference)), 'gallery' => array('position' => array('horizontal' => 'right', 'vertical' => 'intext', 'noWrap' => true), 'width' => 320, 'count' => array('files' => 1, 'columns' => 1, 'rows' => 1), 'columnSpacing' => 25, 'border' => array('enabled' => false, 'width' => 1, 'padding' => 0), 'rows' => array(array('columns' => array(array('media' => object(TYPO3\CMS\Core\Resource\FileReference), 'dimensions' => array('width' => 320, 'height' => 452.0))))))), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/Standard_action_textpic_6463f736cea41a6190d6d31c3cc1a37c2a8d8185.php line 171
$arguments24['debug'] = true;
$arguments24['partial'] = 'Media/Gallery';
$arguments24['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output23 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments24, $renderChildrenClosure25, $renderingContext);

$output23 .= '
        ';
return $output23;
at Standard_action_textpic_6463f736cea41a6190d6d31c3cc1a37c2a8d8185->{closure}()
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/Standard_action_textpic_6463f736cea41a6190d6d31c3cc1a37c2a8d8185.php line 197
     $renderingContext
    );
$arguments18['__thenClosure'] = $renderChildrenClosure19;

$output10 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments18, $renderChildrenClosure19, $renderingContext);

$output10 .= '

        ';
at Standard_action_textpic_6463f736cea41a6190d6d31c3cc1a37c2a8d8185->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 172
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Main', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => true, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/layout_Default_html_2b131884094ed29a0dd9aeb92def832b327eb40d.php line 1147
     ),
     $renderingContext
    );

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

$output3 .= '
                ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_2b131884094ed29a0dd9aeb92def832b327eb40d->{closure}()
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/layout_Default_html_2b131884094ed29a0dd9aeb92def832b327eb40d.php line 1669
        ';
return $output65;
};

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

$output0 .= '

';
at layout_Default_html_2b131884094ed29a0dd9aeb92def832b327eb40d->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/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' => 'Textpic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1280m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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')))))
in /home/bbscongr/public_html/typo3-v11/public/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' => 'Textpic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1280m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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')))))
in /home/bbscongr/public_html/typo3-v11/public/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' => 'Textpic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1280m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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')))), 'lib.contentElement')
in /home/bbscongr/public_html/typo3-v11/public/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' => 'Textpic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1280m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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')))), 'textpic')
in /home/bbscongr/public_html/typo3-v11/public/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')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('bbsanmeldung_bbscongresskongresse' => 'USER', 'bbsanmeldung_bbscongresskongresse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongresskongresse'), 'bbsanmeldung_bbscongress' => 'USER', 'bbsanmeldung_bbscongress.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongress'), 'bbsabstracts_abstracts' => 'USER', 'bbsabstracts_abstracts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstracts'), 'bbsabstracts_abstractspdf' => 'USER', 'bbsabstracts_abstractspdf.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstractspdf'), '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')), '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')))), '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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'))))
in /home/bbscongr/public_html/typo3-v11/public/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')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('bbsanmeldung_bbscongresskongresse' => 'USER', 'bbsanmeldung_bbscongresskongresse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongresskongresse'), 'bbsanmeldung_bbscongress' => 'USER', 'bbsanmeldung_bbscongress.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongress'), 'bbsabstracts_abstracts' => 'USER', 'bbsabstracts_abstracts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstracts'), 'bbsabstracts_abstractspdf' => 'USER', 'bbsabstracts_abstractspdf.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstractspdf'), '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')), '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')))), '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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'))))
in /home/bbscongr/public_html/typo3-v11/public/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')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('bbsanmeldung_bbscongresskongresse' => 'USER', 'bbsanmeldung_bbscongresskongresse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongresskongresse'), 'bbsanmeldung_bbscongress' => 'USER', 'bbsanmeldung_bbscongress.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongress'), 'bbsabstracts_abstracts' => 'USER', 'bbsabstracts_abstracts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstracts'), 'bbsabstracts_abstractspdf' => 'USER', 'bbsabstracts_abstractspdf.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstractspdf'), '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')), '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')))), '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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'))), 'tt_content')
in /home/bbscongr/public_html/typo3-v11/public/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')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('bbsanmeldung_bbscongresskongresse' => 'USER', 'bbsanmeldung_bbscongresskongresse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongresskongresse'), 'bbsanmeldung_bbscongress' => 'USER', 'bbsanmeldung_bbscongress.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsanmeldung', 'pluginName' => 'Bbscongress'), 'bbsabstracts_abstracts' => 'USER', 'bbsabstracts_abstracts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstracts'), 'bbsabstracts_abstractspdf' => 'USER', 'bbsabstracts_abstractspdf.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bbsabstracts', 'pluginName' => 'Abstractspdf'), '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')), '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')))), '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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' => '960', 'maxGalleryWidthInText' => '320', 'columnSpacing' => '25', 'borderWidth' => '1', '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'))), '')
in /home/bbscongr/public_html/typo3-v11/public/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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /home/bbscongr/public_html/typo3-v11/public/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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /home/bbscongr/public_html/typo3-v11/public/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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), '20')
in /home/bbscongr/public_html/typo3-v11/public/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', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), '')
in /home/bbscongr/public_html/typo3-v11/public/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', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /home/bbscongr/public_html/typo3-v11/public/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', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /home/bbscongr/public_html/typo3-v11/public/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', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /home/bbscongr/public_html/typo3-v11/public/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', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'lib.dynamicContent')
in /home/bbscongr/public_html/typo3-v11/public/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('contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:klinksite/Resources/Private/EXT/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1280m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="fancybox" rel="fancybox[{field:uid}]" data-fancybox="fancybox[{field:uid}]" data-caption="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')))), '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', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), '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', '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', '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' => 'ce-table', 'always' => '1')))), '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'))), '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', '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', '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'))), 'dynamicContent' => 'COA', 'dynamicContent.' => array('LOAD_REGISTER', '5.' => 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')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), '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'))), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'dynamicContentSlide' => '< lib.dynamicContent', 'dynamicContentSlide.' => array('20.' => array('slide' => '-1')), 'lang' => 'COA', 'lang.' => array('wrap' => '<ul>|</ul>', 'HMENU', '10.' => array('special' => 'language', 'special.' => array('value' => '0,1', 'normalWhenNoLanguage' => '0'), 'TMENU', '1.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('linkWrap' => '<li class="first">|</li> |*| <li>|</li> |*| <li>|</li>', 'stdWrap.' => array('override' => 'D || F', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&L=0 || &L=1', 'title' => 'deutsch || français', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'L,id,cHash,no_cache', 'method' => 'GET'), 'useCacheHash' => '1', 'no_cache' => '0')), 'doNotLinkIt' => '1'), 'ACT' => '1', 'ACT.' => array('linkWrap' => '<li class="first active">|</li> |*| <li class="active">|</li> |*| <li class="active">|</li>', 'stdWrap.' => array('override' => 'D || F', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&L=0 || &L=1', 'title' => 'deutsch || français', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'L,id,cHash,no_cache', 'method' => 'GET'), 'useCacheHash' => '1', 'no_cache' => '0')), 'doNotLinkIt' => '1'), 'USERDEF1' => '1', 'USERDEF1.' => array('linkWrap' => '<li class="first passive">|</li> |*| <li class="passive">|</li> |*| <li class="passive">|</li>', 'stdWrap.' => array('override' => 'D || F'), 'doNotLinkIt' => '1'), 'USERDEF2' => '1', 'USERDEF2.' => array('linkWrap' => '<li class="first passive">|</li> |*| <li class="passive">|</li> |*| <li class="passive">|</li>', 'stdWrap.' => array('override' => 'D || F'), 'doNotLinkIt' => '1')))), 'logo' => 'COA', 'logo.' => array('stdWrap.' => array('typolink.' => array('parameter' => 't3://page?uid=1 - - "zurück zur Startseite"', 'ATagParams' => 'aria-label="zurück zur Startseite"')), 'TEXT', '10.' => array('value' => ' <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 465 86" style="enable-background:new 0 0 465 86;" xml:space="preserve"> <style type="text/css"> .st0{fill:#054B80;} .st1{fill:#4B494A;} .st2{fill-rule:evenodd;clip-rule:evenodd;fill:#0C88CA;} .st3{fill-rule:evenodd;clip-rule:evenodd;fill:#054B80;} .st4{fill-rule:evenodd;clip-rule:evenodd;fill:#4B494A;} .st5{fill-rule:evenodd;clip-rule:evenodd;fill:#0F66B0;} </style> <g> <path class="st0" d="M19.6,59.1H0.7v-43h16.7c2.9,0,5.4,0.3,7.5,1c2.1,0.7,3.7,1.6,4.8,2.8c1.9,2.2,2.9,4.7,2.9,7.5 c0,3.4-1.1,5.9-3.3,7.5c-0.7,0.6-1.3,0.9-1.5,1.1c-0.3,0.1-0.8,0.4-1.5,0.7c2.7,0.6,4.8,1.8,6.4,3.6c1.6,1.8,2.4,4.1,2.4,6.8 c0,3-1,5.6-3.1,7.9C29.6,57.8,25.5,59.1,19.6,59.1L19.6,59.1z M10.3,33.5h4.6c2.7,0,4.6-0.3,5.9-0.9c1.3-0.6,1.9-1.8,1.9-3.7 c0-1.9-0.6-3.2-1.8-3.8c-1.2-0.6-3.2-0.9-6-0.9h-4.6V33.5L10.3,33.5z M10.3,51h6.6c2.8,0,4.8-0.3,6.2-1c1.4-0.7,2.1-2,2.1-4 c0-2-0.7-3.3-2.2-3.9c-1.5-0.6-3.8-1-7-1h-5.7V51z"/> <path class="st0" d="M59.1,59.1H40.2v-43H57c2.9,0,5.4,0.3,7.5,1c2.1,0.7,3.7,1.6,4.8,2.8c1.9,2.2,2.9,4.7,2.9,7.5 c0,3.4-1.1,5.9-3.3,7.5c-0.7,0.6-1.3,0.9-1.5,1.1c-0.3,0.1-0.8,0.4-1.5,0.7c2.7,0.6,4.8,1.8,6.4,3.6c1.6,1.8,2.4,4.1,2.4,6.8 c0,3-1,5.6-3.1,7.9C69.1,57.8,65,59.1,59.1,59.1L59.1,59.1z M49.9,33.5h4.6c2.7,0,4.6-0.3,5.9-0.9c1.3-0.6,1.9-1.8,1.9-3.7 c0-1.9-0.6-3.2-1.8-3.8c-1.2-0.6-3.2-0.9-6-0.9h-4.6V33.5L49.9,33.5z M49.9,51h6.6c2.7,0,4.8-0.3,6.2-1c1.4-0.7,2.1-2,2.1-4 c0-2-0.7-3.3-2.2-3.9c-1.5-0.6-3.8-1-7-1h-5.7V51z"/> <path class="st0" d="M93.9,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.2-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C101.7,25,97.9,23.5,93.9,23.5z"/> <path class="st1" d="M150.4,50.6c4.7,0,8.6-1.9,11.6-5.6l6.2,6.3c-4.9,5.5-10.6,8.3-17.3,8.3c-6.6,0-12.1-2.1-16.4-6.3 c-4.3-4.2-6.4-9.5-6.4-15.9c0-6.4,2.2-11.7,6.6-16c4.4-4.3,9.7-6.4,16-6.4c7.1,0,13,2.7,17.7,8.1l-6,6.8c-3-3.8-6.8-5.7-11.3-5.7 c-3.6,0-6.7,1.2-9.3,3.5c-2.6,2.4-3.8,5.5-3.8,9.5c0,4,1.2,7.2,3.6,9.6C144,49.4,146.9,50.6,150.4,50.6z"/> <path class="st1" d="M206,37.4c0-1.5-0.2-2.8-0.5-4.1c2-2.9,4.2-5.7,6.5-8.6c2.5,3.6,3.8,7.8,3.8,12.6c0,6.3-2.2,11.6-6.5,15.9 c-4.4,4.2-9.7,6.4-16.1,6.4c-6.4,0-11.7-2.1-16.1-6.4c-4.4-4.2-6.5-9.5-6.5-15.9c0-2.2,0.3-4.4,0.8-6.3c3,1.5,6,3.5,9,6l0,0.4 c0,3.8,1.2,7.1,3.7,9.8c2.5,2.7,5.5,4,9.1,4c0.2,0,0.4,0,0.6,0l0.6,0c3.1-0.3,5.7-1.6,7.9-4C204.7,44.5,206,41.2,206,37.4L206,37.4 z M199.1,25c1.9-2,4-4.2,6.4-6.5c-3.6-2.3-7.7-3.4-12.3-3.4c-5.2,0-9.8,1.4-13.6,4.3c2.3,1.6,4.7,3.6,7.2,5.9 c1.9-1.2,4.1-1.8,6.5-1.8C195.4,23.5,197.4,24,199.1,25z"/> <polygon class="st1" points="252.2,16.1 261.9,16.1 261.9,59.1 252.2,59.1 231.7,32.2 231.7,59.1 222.1,59.1 222.1,16.1 231.1,16.1 252.2,43.8 "/> <path class="st1" d="M297.8,37.2h9.7v15.3c-4.3,4.8-10.2,7.1-17.7,7.1c-6.3,0-11.6-2.1-15.9-6.3c-4.3-4.2-6.4-9.5-6.4-15.9 c0-6.4,2.2-11.7,6.6-16c4.4-4.3,9.6-6.4,15.8-6.4c6.2,0,11.5,2,16.1,6.1l-5,7.2c-1.9-1.7-3.7-2.8-5.3-3.5c-1.6-0.6-3.4-1-5.3-1 c-3.7,0-6.7,1.2-9.2,3.7c-2.5,2.5-3.8,5.8-3.8,9.8s1.2,7.3,3.6,9.8c2.4,2.4,5.3,3.7,8.6,3.7c3.3,0,6.1-0.6,8.3-1.9V37.2z"/> <path class="st1" d="M349.2,30.4c0,6.9-2.7,11.3-8.2,13.4l10.9,15.4H340l-9.5-13.7h-6.7v13.7h-9.6v-43h16.3 c6.7,0,11.5,1.1,14.3,3.4C347.7,21.7,349.2,25.4,349.2,30.4L349.2,30.4z M330.9,37.1c3.3,0,5.5-0.5,6.7-1.6 c1.2-1.1,1.8-2.8,1.8-5.1c0-2.3-0.6-3.9-1.8-4.8c-1.2-0.9-3.4-1.3-6.5-1.3h-7.2v12.7H330.9z"/> <polygon class="st1" points="387.4,16.1 387.4,24.7 366,24.7 366,33.5 385.3,33.5 385.3,41.7 366,41.7 366,50.6 388.1,50.6 388.1,59.1 356.4,59.1 356.4,16.1 "/> <path class="st1" d="M409.6,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.2-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C417.5,25,413.6,23.5,409.6,23.5z"/> <path class="st1" d="M447.2,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.1-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C455,25,451.1,23.5,447.2,23.5z"/> <path class="st2" d="M175.1,19.3c4.8,2.4,12,8.3,18.3,15.4c4.9-6.9,22.4-25,39.2-33.8c-21.3,18.3-27.9,28.7-38.9,47.6 C185.9,38,177.6,31,169.7,27.2L175.1,19.3z"/> <path class="st3" d="M175.1,19.3c4.8,2.4,12,8.3,18.3,15.4l-5,7.2c-6.2-6.9-12.6-11.8-18.7-14.7L175.1,19.3z"/> <path class="st4" d="M0.6,80.4h123.5v-1.9H0.6V80.4L0.6,80.4z M337.8,80.4h124.1v-1.9H337.8V80.4z"/> <path class="st5" d="M193.4,34.7c-1.9,2.3-3.6,4.8-5,7.2l5.3,6.6c1.6-2.7,2.9-4.9,4.5-7.6C197.2,39.1,194.7,35.9,193.4,34.7z"/> <path class="st1" d="M139.9,85h-4.8V74.1h4.2c0.7,0,1.4,0.1,1.9,0.3c0.5,0.2,0.9,0.4,1.2,0.7c0.5,0.6,0.7,1.2,0.7,1.9 c0,0.9-0.3,1.5-0.8,1.9c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0-0.2,0.1-0.4,0.2c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.6,1,0.6,1.7 c0,0.8-0.3,1.4-0.8,2C142.4,84.6,141.3,85,139.9,85L139.9,85z M136.9,78.6h2.3c1.3,0,2-0.5,2-1.4c0-0.5-0.2-0.9-0.5-1.1 c-0.3-0.2-0.8-0.3-1.5-0.3h-2.4V78.6L136.9,78.6z M136.9,83.3h2.9c0.7,0,1.2-0.1,1.6-0.3c0.4-0.2,0.5-0.6,0.5-1.2 c0-1-0.8-1.5-2.3-1.5h-2.7V83.3z"/> <polygon class="st1" points="159.5,74.1 159.5,75.8 153.7,75.8 153.7,78.7 159,78.7 159,80.3 153.7,80.3 153.7,83.2 159.7,83.2 159.7,85 151.9,85 151.9,74.1 "/> <polygon class="st1" points="172,75.8 172,85 170.2,85 170.2,75.8 166.9,75.8 166.9,74.1 175.3,74.1 175.3,75.8 "/> <polygon class="st1" points="187.2,75.8 187.2,85 185.4,85 185.4,75.8 182.1,75.8 182.1,74.1 190.5,74.1 190.5,75.8 "/> <polygon class="st1" points="206,74.1 206,75.8 200.2,75.8 200.2,78.7 205.4,78.7 205.4,80.3 200.2,80.3 200.2,83.2 206.2,83.2 206.2,85 198.3,85 198.3,74.1 "/> <path class="st1" d="M223,77.6c0,1.8-0.8,2.9-2.4,3.4l2.9,4h-2.3l-2.6-3.7h-2.4V85h-1.8V74.1h4.1c1.7,0,2.9,0.3,3.6,0.8 C222.7,75.5,223,76.4,223,77.6L223,77.6z M218.5,79.6c1,0,1.7-0.2,2.1-0.5c0.4-0.3,0.6-0.8,0.6-1.6s-0.2-1.2-0.6-1.5 c-0.4-0.3-1.1-0.4-2.1-0.4h-2.3v3.9H218.5z"/> <path class="st1" d="M240.5,85h-4.8V74.1h4.2c0.7,0,1.4,0.1,1.9,0.3c0.5,0.2,0.9,0.4,1.2,0.7c0.5,0.6,0.7,1.2,0.7,1.9 c0,0.9-0.3,1.5-0.8,1.9c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0-0.2,0.1-0.4,0.2c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.6,1,0.6,1.7 c0,0.8-0.3,1.4-0.8,2C243.1,84.6,242,85,240.5,85L240.5,85z M237.6,78.6h2.3c1.3,0,2-0.5,2-1.4c0-0.5-0.2-0.9-0.5-1.1 c-0.3-0.2-0.8-0.3-1.5-0.3h-2.4V78.6L237.6,78.6z M237.6,83.3h2.9c0.7,0,1.2-0.1,1.6-0.3c0.4-0.2,0.5-0.6,0.5-1.2 c0-1-0.8-1.5-2.3-1.5h-2.7V83.3z"/> <polygon class="st1" points="260.2,74.1 260.2,75.8 254.4,75.8 254.4,78.7 259.6,78.7 259.6,80.3 254.4,80.3 254.4,83.2 260.4,83.2 260.4,85 252.6,85 252.6,74.1 "/> <path class="st1" d="M276.1,75.5c-0.5,0-1,0.1-1.3,0.3c-0.3,0.2-0.5,0.5-0.5,1c0,0.4,0.2,0.8,0.5,1c0.3,0.2,1.1,0.5,2.2,0.8 c1.1,0.3,2,0.6,2.5,1.1c0.6,0.5,0.8,1.2,0.8,2.2c0,1-0.4,1.7-1.1,2.3c-0.7,0.6-1.7,0.9-2.8,0.9c-1.7,0-3.2-0.6-4.5-1.8l1.2-1.4 c1.1,1,2.2,1.4,3.4,1.4c0.6,0,1.1-0.1,1.4-0.4s0.5-0.6,0.5-1c0-0.4-0.2-0.7-0.5-1c-0.3-0.2-0.9-0.4-1.7-0.6 c-0.8-0.2-1.4-0.4-1.8-0.5c-0.4-0.2-0.8-0.4-1.1-0.6c-0.6-0.5-1-1.2-1-2.2c0-1,0.4-1.8,1.1-2.3c0.7-0.5,1.6-0.8,2.7-0.8 c0.7,0,1.4,0.1,2.1,0.3c0.7,0.2,1.3,0.6,1.8,1l-1,1.4c-0.3-0.3-0.8-0.5-1.3-0.7C277.2,75.6,276.7,75.5,276.1,75.5z"/> <path class="st1" d="M290,82.5l-1.1,2.5h-2l4.8-10.9h2l4.8,10.9h-2l-1.1-2.5H290L290,82.5z M294.7,80.8l-2-4.5l-2,4.5H294.7z"/> <polygon class="st1" points="307.7,75.8 307.7,78.8 312.5,78.8 312.5,80.5 307.7,80.5 307.7,85 305.8,85 305.8,74.1 313.1,74.1 313.1,75.8 "/> <polygon class="st1" points="328.7,74.1 328.7,75.8 322.9,75.8 322.9,78.7 328.1,78.7 328.1,80.3 322.9,80.3 322.9,83.2 328.9,83.2 328.9,85 321,85 321,74.1 "/> </g> </svg>')), 'mainnav' => 'HMENU', 'mainnav.' => array('wrap' => '<ul>|</ul>', 'entryLevel' => '0', 'excludeUidList' => '11,13,347', 'TMENU', '1.' => array('expAll' => '0', 'noBlur' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li class="before">|</li> |*| <li>|</li> |*| <li class="after">|</li>', 'ATagTitle.' => array('field' => 'title')), 'ACT.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li class="before">|</li> |*| <li>|</li> |*| <li class="after">|</li>', 'ATagTitle.' => array('field' => 'title'), 'ATagParams' => 'class="active"'), 'ACT' => '1')), 'meta' => 'TEXT', 'meta.' => array('X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'viewport' => 'width=device-width, initial-scale=1.0', 'description.' => array('field' => 'description', 'ifEmpty' => 'BBS Congress GmbH organisiert medizinische Kongresse, Fortbildungskurse und Symposien in der ganzen Schweiz. Wir organisieren Ihre Fortbildungsveranstaltung von Anfang bis zum Schluss und nehmen Ihnen auf dem Weg zu Ihrem erfolgreichen Anlass alle Aufgaben ab.'), 'og:site_name' => 'BBS Congress GmbH', 'og:site_name.' => array('insertData' => '1'), 'og:locale' => 'de_DE', 'og:locale:alternate.' => array('attribute' => 'property', 'value.' => array('fr_FR', 'en_EN'))), 'mmenu' => 'COA', 'mmenu.' => array('COA', '10.' => array('wrap' => '<nav id="mmenu-nav"><ul>|</ul></nav>', 'HMENU', '20.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'includeNotInMenu' => '0', 'TMENU', '1.' => array('expAll' => '1', 'noBlur' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT.' => array('wrapItemAndSub' => '<li class="Selected">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT' => '1'), 'TMENU', '2.' => array('expAll' => '1', 'noBlur' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT.' => array('wrapItemAndSub' => '<li class="Selected">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT' => '1', 'wrap' => '<ul>|</ul>'), 'TMENU', '3.' => array('expAll' => '1', 'noBlur' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT.' => array('wrapItemAndSub' => '<li class="Selected">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT' => '1', 'wrap' => '<ul>|</ul>')), 'HMENU', '30.' => array('special' => 'list', 'special.' => array('value' => '23'), 'includeNotInMenu' => '1', 'TMENU', '1.' => array('expAll' => '1', 'noBlur' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="mmenu_meta">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT.' => array('wrapItemAndSub' => '<li class="mmenu_meta Selected">|</li>', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT' => '1')))), 'quicklinks' => 'COA', 'quicklinks.' => array('wrap' => '<ul>|</ul>', 'HMENU', '20.' => array('includeNotInMenu' => '1', 'special' => 'list', 'special.' => array('value' => '23'), 'TMENU', '1.' => array('noBlur' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li class="first">|</li> |*| <li>|</li> |*| <li>|</li>', 'ATagTitle.' => array('field' => 'title')), 'ACT.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li class="first">|</li> |*| <li>|</li> |*| <li>|</li>', 'ATagTitle.' => array('field' => 'title'), 'ATagParams' => 'class="active"'), 'ACT' => '1'))), 'site_footer' => 'COA', 'site_footer.' => array('COA', '10.' => array('stdWrap.' => array('typolink.' => array('parameter' => 't3://page?uid=1 - - "zurück zur Startseite"', 'ATagParams' => 'aria-label="zurück zur Startseite"')), 'TEXT', '10.' => array('value' => ' <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 465 86" style="enable-background:new 0 0 465 86;" xml:space="preserve"> <style type="text/css"> .st0{fill:#054B80;} .st1{fill:#4B494A;} .st2{fill-rule:evenodd;clip-rule:evenodd;fill:#0C88CA;} .st3{fill-rule:evenodd;clip-rule:evenodd;fill:#054B80;} .st4{fill-rule:evenodd;clip-rule:evenodd;fill:#4B494A;} .st5{fill-rule:evenodd;clip-rule:evenodd;fill:#0F66B0;} </style> <g> <path class="st0" d="M19.6,59.1H0.7v-43h16.7c2.9,0,5.4,0.3,7.5,1c2.1,0.7,3.7,1.6,4.8,2.8c1.9,2.2,2.9,4.7,2.9,7.5 c0,3.4-1.1,5.9-3.3,7.5c-0.7,0.6-1.3,0.9-1.5,1.1c-0.3,0.1-0.8,0.4-1.5,0.7c2.7,0.6,4.8,1.8,6.4,3.6c1.6,1.8,2.4,4.1,2.4,6.8 c0,3-1,5.6-3.1,7.9C29.6,57.8,25.5,59.1,19.6,59.1L19.6,59.1z M10.3,33.5h4.6c2.7,0,4.6-0.3,5.9-0.9c1.3-0.6,1.9-1.8,1.9-3.7 c0-1.9-0.6-3.2-1.8-3.8c-1.2-0.6-3.2-0.9-6-0.9h-4.6V33.5L10.3,33.5z M10.3,51h6.6c2.8,0,4.8-0.3,6.2-1c1.4-0.7,2.1-2,2.1-4 c0-2-0.7-3.3-2.2-3.9c-1.5-0.6-3.8-1-7-1h-5.7V51z"/> <path class="st0" d="M59.1,59.1H40.2v-43H57c2.9,0,5.4,0.3,7.5,1c2.1,0.7,3.7,1.6,4.8,2.8c1.9,2.2,2.9,4.7,2.9,7.5 c0,3.4-1.1,5.9-3.3,7.5c-0.7,0.6-1.3,0.9-1.5,1.1c-0.3,0.1-0.8,0.4-1.5,0.7c2.7,0.6,4.8,1.8,6.4,3.6c1.6,1.8,2.4,4.1,2.4,6.8 c0,3-1,5.6-3.1,7.9C69.1,57.8,65,59.1,59.1,59.1L59.1,59.1z M49.9,33.5h4.6c2.7,0,4.6-0.3,5.9-0.9c1.3-0.6,1.9-1.8,1.9-3.7 c0-1.9-0.6-3.2-1.8-3.8c-1.2-0.6-3.2-0.9-6-0.9h-4.6V33.5L49.9,33.5z M49.9,51h6.6c2.7,0,4.8-0.3,6.2-1c1.4-0.7,2.1-2,2.1-4 c0-2-0.7-3.3-2.2-3.9c-1.5-0.6-3.8-1-7-1h-5.7V51z"/> <path class="st0" d="M93.9,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.2-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C101.7,25,97.9,23.5,93.9,23.5z"/> <path class="st1" d="M150.4,50.6c4.7,0,8.6-1.9,11.6-5.6l6.2,6.3c-4.9,5.5-10.6,8.3-17.3,8.3c-6.6,0-12.1-2.1-16.4-6.3 c-4.3-4.2-6.4-9.5-6.4-15.9c0-6.4,2.2-11.7,6.6-16c4.4-4.3,9.7-6.4,16-6.4c7.1,0,13,2.7,17.7,8.1l-6,6.8c-3-3.8-6.8-5.7-11.3-5.7 c-3.6,0-6.7,1.2-9.3,3.5c-2.6,2.4-3.8,5.5-3.8,9.5c0,4,1.2,7.2,3.6,9.6C144,49.4,146.9,50.6,150.4,50.6z"/> <path class="st1" d="M206,37.4c0-1.5-0.2-2.8-0.5-4.1c2-2.9,4.2-5.7,6.5-8.6c2.5,3.6,3.8,7.8,3.8,12.6c0,6.3-2.2,11.6-6.5,15.9 c-4.4,4.2-9.7,6.4-16.1,6.4c-6.4,0-11.7-2.1-16.1-6.4c-4.4-4.2-6.5-9.5-6.5-15.9c0-2.2,0.3-4.4,0.8-6.3c3,1.5,6,3.5,9,6l0,0.4 c0,3.8,1.2,7.1,3.7,9.8c2.5,2.7,5.5,4,9.1,4c0.2,0,0.4,0,0.6,0l0.6,0c3.1-0.3,5.7-1.6,7.9-4C204.7,44.5,206,41.2,206,37.4L206,37.4 z M199.1,25c1.9-2,4-4.2,6.4-6.5c-3.6-2.3-7.7-3.4-12.3-3.4c-5.2,0-9.8,1.4-13.6,4.3c2.3,1.6,4.7,3.6,7.2,5.9 c1.9-1.2,4.1-1.8,6.5-1.8C195.4,23.5,197.4,24,199.1,25z"/> <polygon class="st1" points="252.2,16.1 261.9,16.1 261.9,59.1 252.2,59.1 231.7,32.2 231.7,59.1 222.1,59.1 222.1,16.1 231.1,16.1 252.2,43.8 "/> <path class="st1" d="M297.8,37.2h9.7v15.3c-4.3,4.8-10.2,7.1-17.7,7.1c-6.3,0-11.6-2.1-15.9-6.3c-4.3-4.2-6.4-9.5-6.4-15.9 c0-6.4,2.2-11.7,6.6-16c4.4-4.3,9.6-6.4,15.8-6.4c6.2,0,11.5,2,16.1,6.1l-5,7.2c-1.9-1.7-3.7-2.8-5.3-3.5c-1.6-0.6-3.4-1-5.3-1 c-3.7,0-6.7,1.2-9.2,3.7c-2.5,2.5-3.8,5.8-3.8,9.8s1.2,7.3,3.6,9.8c2.4,2.4,5.3,3.7,8.6,3.7c3.3,0,6.1-0.6,8.3-1.9V37.2z"/> <path class="st1" d="M349.2,30.4c0,6.9-2.7,11.3-8.2,13.4l10.9,15.4H340l-9.5-13.7h-6.7v13.7h-9.6v-43h16.3 c6.7,0,11.5,1.1,14.3,3.4C347.7,21.7,349.2,25.4,349.2,30.4L349.2,30.4z M330.9,37.1c3.3,0,5.5-0.5,6.7-1.6 c1.2-1.1,1.8-2.8,1.8-5.1c0-2.3-0.6-3.9-1.8-4.8c-1.2-0.9-3.4-1.3-6.5-1.3h-7.2v12.7H330.9z"/> <polygon class="st1" points="387.4,16.1 387.4,24.7 366,24.7 366,33.5 385.3,33.5 385.3,41.7 366,41.7 366,50.6 388.1,50.6 388.1,59.1 356.4,59.1 356.4,16.1 "/> <path class="st1" d="M409.6,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.2-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C417.5,25,413.6,23.5,409.6,23.5z"/> <path class="st1" d="M447.2,23.5c-1.6,0-2.9,0.4-3.8,1.1c-0.9,0.8-1.4,1.8-1.4,3c0,1.3,0.6,2.2,1.7,3c1.1,0.7,3.7,1.6,7.8,2.6 c4.1,1,7.3,2.5,9.5,4.5c2.3,2,3.4,4.9,3.4,8.8c0,3.9-1.4,7-4.3,9.4c-2.9,2.4-6.7,3.6-11.4,3.6c-6.8,0-13-2.5-18.4-7.6l5.7-7 c4.6,4.1,8.9,6.1,12.9,6.1c1.8,0,3.1-0.4,4.2-1.1c1-0.8,1.5-1.8,1.5-3.1c0-1.3-0.5-2.3-1.6-3.1c-1.1-0.8-3.2-1.5-6.3-2.3 c-5-1.2-8.7-2.7-11-4.6c-2.3-1.9-3.5-4.9-3.5-9c0-4.1,1.5-7.2,4.4-9.5c2.9-2.2,6.6-3.3,11-3.3c2.9,0,5.7,0.5,8.6,1.5 c2.9,1,5.4,2.4,7.5,4.2l-4.9,7C455,25,451.1,23.5,447.2,23.5z"/> <path class="st2" d="M175.1,19.3c4.8,2.4,12,8.3,18.3,15.4c4.9-6.9,22.4-25,39.2-33.8c-21.3,18.3-27.9,28.7-38.9,47.6 C185.9,38,177.6,31,169.7,27.2L175.1,19.3z"/> <path class="st3" d="M175.1,19.3c4.8,2.4,12,8.3,18.3,15.4l-5,7.2c-6.2-6.9-12.6-11.8-18.7-14.7L175.1,19.3z"/> <path class="st4" d="M0.6,80.4h123.5v-1.9H0.6V80.4L0.6,80.4z M337.8,80.4h124.1v-1.9H337.8V80.4z"/> <path class="st5" d="M193.4,34.7c-1.9,2.3-3.6,4.8-5,7.2l5.3,6.6c1.6-2.7,2.9-4.9,4.5-7.6C197.2,39.1,194.7,35.9,193.4,34.7z"/> <path class="st1" d="M139.9,85h-4.8V74.1h4.2c0.7,0,1.4,0.1,1.9,0.3c0.5,0.2,0.9,0.4,1.2,0.7c0.5,0.6,0.7,1.2,0.7,1.9 c0,0.9-0.3,1.5-0.8,1.9c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0-0.2,0.1-0.4,0.2c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.6,1,0.6,1.7 c0,0.8-0.3,1.4-0.8,2C142.4,84.6,141.3,85,139.9,85L139.9,85z M136.9,78.6h2.3c1.3,0,2-0.5,2-1.4c0-0.5-0.2-0.9-0.5-1.1 c-0.3-0.2-0.8-0.3-1.5-0.3h-2.4V78.6L136.9,78.6z M136.9,83.3h2.9c0.7,0,1.2-0.1,1.6-0.3c0.4-0.2,0.5-0.6,0.5-1.2 c0-1-0.8-1.5-2.3-1.5h-2.7V83.3z"/> <polygon class="st1" points="159.5,74.1 159.5,75.8 153.7,75.8 153.7,78.7 159,78.7 159,80.3 153.7,80.3 153.7,83.2 159.7,83.2 159.7,85 151.9,85 151.9,74.1 "/> <polygon class="st1" points="172,75.8 172,85 170.2,85 170.2,75.8 166.9,75.8 166.9,74.1 175.3,74.1 175.3,75.8 "/> <polygon class="st1" points="187.2,75.8 187.2,85 185.4,85 185.4,75.8 182.1,75.8 182.1,74.1 190.5,74.1 190.5,75.8 "/> <polygon class="st1" points="206,74.1 206,75.8 200.2,75.8 200.2,78.7 205.4,78.7 205.4,80.3 200.2,80.3 200.2,83.2 206.2,83.2 206.2,85 198.3,85 198.3,74.1 "/> <path class="st1" d="M223,77.6c0,1.8-0.8,2.9-2.4,3.4l2.9,4h-2.3l-2.6-3.7h-2.4V85h-1.8V74.1h4.1c1.7,0,2.9,0.3,3.6,0.8 C222.7,75.5,223,76.4,223,77.6L223,77.6z M218.5,79.6c1,0,1.7-0.2,2.1-0.5c0.4-0.3,0.6-0.8,0.6-1.6s-0.2-1.2-0.6-1.5 c-0.4-0.3-1.1-0.4-2.1-0.4h-2.3v3.9H218.5z"/> <path class="st1" d="M240.5,85h-4.8V74.1h4.2c0.7,0,1.4,0.1,1.9,0.3c0.5,0.2,0.9,0.4,1.2,0.7c0.5,0.6,0.7,1.2,0.7,1.9 c0,0.9-0.3,1.5-0.8,1.9c-0.2,0.1-0.3,0.2-0.4,0.3c-0.1,0-0.2,0.1-0.4,0.2c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.6,1,0.6,1.7 c0,0.8-0.3,1.4-0.8,2C243.1,84.6,242,85,240.5,85L240.5,85z M237.6,78.6h2.3c1.3,0,2-0.5,2-1.4c0-0.5-0.2-0.9-0.5-1.1 c-0.3-0.2-0.8-0.3-1.5-0.3h-2.4V78.6L237.6,78.6z M237.6,83.3h2.9c0.7,0,1.2-0.1,1.6-0.3c0.4-0.2,0.5-0.6,0.5-1.2 c0-1-0.8-1.5-2.3-1.5h-2.7V83.3z"/> <polygon class="st1" points="260.2,74.1 260.2,75.8 254.4,75.8 254.4,78.7 259.6,78.7 259.6,80.3 254.4,80.3 254.4,83.2 260.4,83.2 260.4,85 252.6,85 252.6,74.1 "/> <path class="st1" d="M276.1,75.5c-0.5,0-1,0.1-1.3,0.3c-0.3,0.2-0.5,0.5-0.5,1c0,0.4,0.2,0.8,0.5,1c0.3,0.2,1.1,0.5,2.2,0.8 c1.1,0.3,2,0.6,2.5,1.1c0.6,0.5,0.8,1.2,0.8,2.2c0,1-0.4,1.7-1.1,2.3c-0.7,0.6-1.7,0.9-2.8,0.9c-1.7,0-3.2-0.6-4.5-1.8l1.2-1.4 c1.1,1,2.2,1.4,3.4,1.4c0.6,0,1.1-0.1,1.4-0.4s0.5-0.6,0.5-1c0-0.4-0.2-0.7-0.5-1c-0.3-0.2-0.9-0.4-1.7-0.6 c-0.8-0.2-1.4-0.4-1.8-0.5c-0.4-0.2-0.8-0.4-1.1-0.6c-0.6-0.5-1-1.2-1-2.2c0-1,0.4-1.8,1.1-2.3c0.7-0.5,1.6-0.8,2.7-0.8 c0.7,0,1.4,0.1,2.1,0.3c0.7,0.2,1.3,0.6,1.8,1l-1,1.4c-0.3-0.3-0.8-0.5-1.3-0.7C277.2,75.6,276.7,75.5,276.1,75.5z"/> <path class="st1" d="M290,82.5l-1.1,2.5h-2l4.8-10.9h2l4.8,10.9h-2l-1.1-2.5H290L290,82.5z M294.7,80.8l-2-4.5l-2,4.5H294.7z"/> <polygon class="st1" points="307.7,75.8 307.7,78.8 312.5,78.8 312.5,80.5 307.7,80.5 307.7,85 305.8,85 305.8,74.1 313.1,74.1 313.1,75.8 "/> <polygon class="st1" points="328.7,74.1 328.7,75.8 322.9,75.8 322.9,78.7 328.1,78.7 328.1,80.3 322.9,80.3 322.9,83.2 328.9,83.2 328.9,85 321,85 321,74.1 "/> </g> </svg>')), 'TEXT', '20.' => array('wrap' => '<address><div itemscope itemtype="http://schema.org/Organization">|</div></address>', 'value' => ' <span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="name">BBS Congress GmbH</span> <span itemprop="streetAddress">Rabbentalstrasse&nbsp;83</span> <span itemprop="postalCode" style="padding:0 0 0 10px;">CH-3013</span> <span itemprop="addressLocality" style="padding:0 10px 0 0;">Bern</span> <span itemprop="addressCountry" style="display:none">Switzerland</span> </span> <div class="phone"> T&nbsp;<span itemprop="telephone" style="padding:0 20px 0 0;">+41&nbsp;31&nbsp;331&nbsp;82&nbsp;75</span> F&nbsp;<span itemprop="faxNumber">+41&nbsp;31&nbsp;332&nbsp;98&nbsp;79</span> </div>'), 'TEXT', '30.' => array('wrap' => '<span>|</span>', 'value' => 'Kontakt:'), 'TEXT', '40.' => array('typolink.' => array('parameter' => 'peter.salchli@bbscongress.ch', 'title' => 'E-mail an Peter Salchli'), 'value' => 'Peter Salchli', 'wrap' => '<span itemprop="email">|</span>'), 'TEXT', '50.' => array('typolink.' => array('parameter' => 'adrian.koenig@bbscongress.ch', 'title' => 'E-mail an Adrian König'), 'value' => 'Adrian König', 'wrap' => '<span itemprop="email">|</span>'), 'TEXT', '60.' => array('typolink.' => array('parameter' => '945', 'title' => 'Impressum / Datenschutz'), 'value' => 'Impressum / Datenschutz', 'wrap' => '<div style="margin:1.25em 0 0 0;">|</div>'))), 'lib.dynamicContent', 'dynamicContent')
in /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/Standard_action_index_cd78ff861cf5e0cb0fcb1275c0cdcc39c3cf4731.php line 58
$array3 = array();
$array3['colPos'] = 0;
$arguments1['data'] = $array3;
$renderChildrenClosure2 = ($arguments1['data'] !== null) ? function() use ($arguments1) { return $arguments1['data']; } : $renderChildrenClosure2;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
';

at Standard_action_index_cd78ff861cf5e0cb0fcb1275c0cdcc39c3cf4731->section_4f9be057f0ea5d2ba72fd2c810e8d7b9aa98b469(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 172
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Content', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/var/cache/code/fluid_template/layout_ContentMain_html_e20a6d430fda43089dc70e63246823eff992eb04.php line 161
$arguments11['contentAs'] = NULL;
$arguments11['debug'] = true;
$arguments11['section'] = 'Content';

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

$output0 .= '
      </div>
    </div>
at layout_ContentMain_html_e20a6d430fda43089dc70e63246823eff992eb04->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bbscongr/public_html/typo3-v11/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 /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/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('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__ContentOverview' => 'TEXT', 'pagets__ContentOverview.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentOverview.html'), 'pagets__ContentMain' => 'TEXT', 'pagets__ContentMain.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html')))), 'layoutRootPaths.' => array('EXT:klinksite/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:klinksite/Resources/Private/Partials/'), 'variables.' => array(), 'dataProcessing.' => array()))
in /home/bbscongr/public_html/typo3-v11/public/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('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__ContentOverview' => 'TEXT', 'pagets__ContentOverview.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentOverview.html'), 'pagets__ContentMain' => 'TEXT', 'pagets__ContentMain.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html')))), 'layoutRootPaths.' => array('EXT:klinksite/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:klinksite/Resources/Private/Partials/'), 'variables.' => array(), 'dataProcessing.' => array()))
in /home/bbscongr/public_html/typo3-v11/public/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('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__ContentOverview' => 'TEXT', 'pagets__ContentOverview.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentOverview.html'), 'pagets__ContentMain' => 'TEXT', 'pagets__ContentMain.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html')))), 'layoutRootPaths.' => array('EXT:klinksite/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:klinksite/Resources/Private/Partials/'), 'variables.' => array(), 'dataProcessing.' => array()), '10')
in /home/bbscongr/public_html/typo3-v11/public/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('includeJSFooter.' => array('powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'powermailForm.' => array('defer' => '1'), 'mmenu' => 'EXT:klinksite/Resources/Public/JavaScript/mmenu/mmenu.js', 'mmenu.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'script' => 'EXT:klinksite/Resources/Public/JavaScript/script.js', 'script.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0')), 'typeNum' => '0', 'meta' => 'TEXT', 'meta.' => array('X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'viewport' => 'width=device-width, initial-scale=1.0', 'description.' => array('field' => 'description', 'ifEmpty' => 'BBS Congress GmbH organisiert medizinische Kongresse, Fortbildungskurse und Symposien in der ganzen Schweiz. Wir organisieren Ihre Fortbildungsveranstaltung von Anfang bis zum Schluss und nehmen Ihnen auf dem Weg zu Ihrem erfolgreichen Anlass alle Aufgaben ab.'), 'og:site_name' => 'BBS Congress GmbH', 'og:site_name.' => array('insertData' => '1'), 'og:locale' => 'de_DE', 'og:locale:alternate.' => array('attribute' => 'property', 'value.' => array('fr_FR', 'en_EN'))), 'includeCSSLibs.' => array('fancyboxCss' => 'https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.css', 'fancyboxCss.' => array('external' => '1')), 'includeCSS.' => array('mainCss' => 'EXT:klinksite/Resources/Public/Css/main.css', 'mainCss.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all'), 'mmenu' => 'EXT:klinksite/Resources/Public/JavaScript/mmenu/mmenu.css', 'mmenu.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all'), 'powermailCss' => 'EXT:klinksite/Resources/Public/Css/powermail.css', 'powermailCss.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all')), 'includeJSFooterlibs.' => array('jqueryJs' => 'https://code.jquery.com/jquery-3.6.0.min.js', 'jqueryJs.' => array('external' => '1', 'disableCompression' => '0', 'excludeFromConcatenation' => '0', 'forceOnTop' => '1', 'crossorigin' => 'anonymous', 'integrity' => 'sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4='), 'fancyboxJs' => 'https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.umd.js', 'fancyboxJs.' => array('external' => '1', 'disableCompression' => '0', 'excludeFromConcatenation' => '0')), 'headerData.' => array('TEXT', '84113002.' => array('value' => ' <script> (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\'); ga(\'create\', \'UA-1808724-13\', \'auto\'); ga(\'send\', \'pageview\'); </script>'), 'TEXT', '200.' => array('value' => ' <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="manifest" href="/site.webmanifest" crossorigin="use-credentials"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><meta name="msapplication-TileColor" content="#da532c"><meta name="theme-color" content="#ffffff">')), 'FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__ContentOverview' => 'TEXT', 'pagets__ContentOverview.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentOverview.html'), 'pagets__ContentMain' => 'TEXT', 'pagets__ContentMain.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html')))), 'layoutRootPaths.' => array('EXT:klinksite/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:klinksite/Resources/Private/Partials/'), 'variables.' => array(), 'dataProcessing.' => array()), 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('stdWrap.' => array('wrap' => '<body | >', 'case' => 'lower'), 'COA', '10.' => array('stdWrap.' => array('noTrimWrap' => '| class="level-12 |"|'), 'TEXT', '10.' => array('field' => 'layout', 'wrap' => 'layout-|', 'noTrimWrap' => '|| |', 'required' => '1'), 'TEXT', '20.' => array('field' => 'sys_language_uid', 'wrap' => 'lang-|', 'noTrimWrap' => '|| |', 'required' => '1'), 'TEXT', '30.' => array('field' => 'uid', 'noTrimWrap' => '|page-||')), 'COA', '20.' => array('stdWrap.' => array('noTrimWrap' => '| data-p="|"|'), 'TEXT', '10.' => array('field' => 'uid')))), '')
in /home/bbscongr/public_html/typo3-v11/public/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('includeJSFooter.' => array('powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'powermailForm.' => array('defer' => '1'), 'mmenu' => 'EXT:klinksite/Resources/Public/JavaScript/mmenu/mmenu.js', 'mmenu.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'script' => 'EXT:klinksite/Resources/Public/JavaScript/script.js', 'script.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0')), 'typeNum' => '0', 'meta' => 'TEXT', 'meta.' => array('X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'viewport' => 'width=device-width, initial-scale=1.0', 'description.' => array('field' => 'description', 'ifEmpty' => 'BBS Congress GmbH organisiert medizinische Kongresse, Fortbildungskurse und Symposien in der ganzen Schweiz. Wir organisieren Ihre Fortbildungsveranstaltung von Anfang bis zum Schluss und nehmen Ihnen auf dem Weg zu Ihrem erfolgreichen Anlass alle Aufgaben ab.'), 'og:site_name' => 'BBS Congress GmbH', 'og:site_name.' => array('insertData' => '1'), 'og:locale' => 'de_DE', 'og:locale:alternate.' => array('attribute' => 'property', 'value.' => array('fr_FR', 'en_EN'))), 'includeCSSLibs.' => array('fancyboxCss' => 'https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.css', 'fancyboxCss.' => array('external' => '1')), 'includeCSS.' => array('mainCss' => 'EXT:klinksite/Resources/Public/Css/main.css', 'mainCss.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all'), 'mmenu' => 'EXT:klinksite/Resources/Public/JavaScript/mmenu/mmenu.css', 'mmenu.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all'), 'powermailCss' => 'EXT:klinksite/Resources/Public/Css/powermail.css', 'powermailCss.' => array('disableCompression' => '0', 'excludeFromConcatenation' => '0', 'media' => 'all')), 'includeJSFooterlibs.' => array('jqueryJs' => 'https://code.jquery.com/jquery-3.6.0.min.js', 'jqueryJs.' => array('external' => '1', 'disableCompression' => '0', 'excludeFromConcatenation' => '0', 'forceOnTop' => '1', 'crossorigin' => 'anonymous', 'integrity' => 'sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4='), 'fancyboxJs' => 'https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.umd.js', 'fancyboxJs.' => array('external' => '1', 'disableCompression' => '0', 'excludeFromConcatenation' => '0')), 'headerData.' => array('TEXT', '84113002.' => array('value' => ' <script> (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\'); ga(\'create\', \'UA-1808724-13\', \'auto\'); ga(\'send\', \'pageview\'); </script>'), 'TEXT', '200.' => array('value' => ' <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="manifest" href="/site.webmanifest" crossorigin="use-credentials"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><meta name="msapplication-TileColor" content="#da532c"><meta name="theme-color" content="#ffffff">')), 'FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__ContentOverview' => 'TEXT', 'pagets__ContentOverview.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentOverview.html'), 'pagets__ContentMain' => 'TEXT', 'pagets__ContentMain.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:klinksite/Resources/Private/Templates/ContentMain.html')))), 'layoutRootPaths.' => array('EXT:klinksite/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:klinksite/Resources/Private/Partials/'), 'variables.' => array(), 'dataProcessing.' => array()), 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('stdWrap.' => array('wrap' => '<body | >', 'case' => 'lower'), 'COA', '10.' => array('stdWrap.' => array('noTrimWrap' => '| class="level-12 |"|'), 'TEXT', '10.' => array('field' => 'layout', 'wrap' => 'layout-|', 'noTrimWrap' => '|| |', 'required' => '1'), 'TEXT', '20.' => array('field' => 'sys_language_uid', 'wrap' => 'lang-|', 'noTrimWrap' => '|| |', 'required' => '1'), 'TEXT', '30.' => array('field' => 'uid', 'noTrimWrap' => '|page-||')), 'COA', '20.' => array('stdWrap.' => array('noTrimWrap' => '| data-p="|"|'), 'TEXT', '10.' => array('field' => 'uid')))))
in /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/typo3conf/ext/secure_downloads/Classes/Middleware/TokenRefreshMiddleware.php line 112
                return $response->withBody($body);
            }
        }

        return $handler->handle($request);
    }
}
at Leuchtfeuer\SecureDownloads\Middleware\TokenRefreshMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

        $body = $response->getBody();
        $body->rewind();
        $contents = $body->getContents();
at FluidTYPO3\Vhs\Middleware\AssetInclusion->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

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

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

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

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

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/adminpanel/Classes/Middleware/SqlLogging.php line 58
        if (StateUtility::isActivatedForUser() && StateUtility::isOpen()) {
            $connection = $this->connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME);
            $connection->getConfiguration()->setSQLLogger(GeneralUtility::makeInstance(DoctrineSqlLogger::class));
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\SqlLogging->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php line 55
                MainController::class
            );
            $request = $adminPanelController->initialize($request);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bbscongr/public_html/typo3-v11/public/typo3conf/ext/secure_downloads/Classes/Middleware/FileDeliveryMiddleware.php line 59

            return GeneralUtility::makeInstance(FileDelivery::class)->deliver($jwt, $request);
        }

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

    /**
     * @param ServerRequestInterface $request The request interface
at Leuchtfeuer\SecureDownloads\Middleware\FileDeliveryMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$205))
in /home/bbscongr/public_html/typo3-v11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

    /**
     * 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 /home/bbscongr/public_html/typo3-v11/public/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 /home/bbscongr/public_html/typo3-v11/public/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /home/bbscongr/public_html/typo3-v11/public/index.php line 21
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});