Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

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

Find a solution for this exception in the TYPO3 Documentation.

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

Object of type PoizDynamite\Members\Domain\Model\Member with identity "52" not found.

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

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

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

        if ($result instanceof Error) {
            $this->messages->forProperty(implode('.', $currentPropertyPath))->addError($result);
        }
at TYPO3\CMS\Extbase\Property\PropertyMapper->doMapping('52', 'PoizDynamite\\Members\\Domain\\Model\\Member', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration), array())
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 122
        }
        $currentPropertyPath = [];
        $this->messages = new Result();
        try {
            $result = $this->doMapping($source, $targetType, $configuration, $currentPropertyPath);
            if ($result instanceof Error) {
                return null;
            }

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

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

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

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

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

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), 'tt_content.list.20.members_member')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2')), 'tt_content.list.20.members_member', 'members_member')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 68, 'pid' => 4, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1690808721, 'crdate' => 1459348295, 'cruser_id' => 1, 'editlock' => 0, 'hidden' => 0, 'sorting' => 50, 'CType' => 'list', 'header' => '', 'header_position' => '', 'rowDescription' => null, 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 1, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => null, 'pages' => '25', 'starttime' => 0, 'endtime' => 0, 'colPos' => -1, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '1', 'list_type' => 'members_member', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="switchableControllerActions"> <value index="vDEF">Member-&gt;list;Member-&gt;show</value> </field> </language> <language index="lEN"></language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:28:{s:5:"CType";N;s:6:"colPos";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"subheader";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"frame_class";N;s:18:"space_before_class";N;s:17:"space_after_class";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:16:"sys_language_uid";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:25:"tx_gridelements_container";N;s:23:"tx_gridelements_columns";N;}', 'l10n_source' => 0, 'selected_categories' => null, 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_new_container' => 0, 'filelink_sorting_direction' => '', 'tx_dce_slug' => '', 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 189, 'tx_gridelements_columns' => 0, 'gridelements_shortcut_page_order_by' => 0, 'tx_mask_gallery' => 0, 'tx_mask_galleryyear' => '', 'tx_mask_galleryalbum' => 0, 'tx_mask_photoalbum' => 0, 'parentgrid_uid' => 189, 'parentgrid_pid' => 4, 'parentgrid_t3ver_oid' => 0, 'parentgrid_t3ver_wsid' => 0, 'parentgrid_t3ver_state' => 0, 'parentgrid_t3ver_stage' => 0, 'parentgrid_t3ver_count' => 0, 'parentgrid_t3ver_tstamp' => 0, 'parentgrid_t3ver_move_id' => 0, 'parentgrid_t3_origuid' => 0, 'parentgrid_tstamp' => 1690462561, 'parentgrid_crdate' => 1690172411, 'parentgrid_cruser_id' => 5, 'parentgrid_editlock' => 0, 'parentgrid_hidden' => 0, 'parentgrid_sorting' => 100, 'parentgrid_CType' => 'gridelements_pi1', 'parentgrid_header' => '', 'parentgrid_header_position' => '', 'parentgrid_rowDescription' => '', 'parentgrid_bodytext' => null, 'parentgrid_bullets_type' => 0, 'parentgrid_uploads_description' => 0, 'parentgrid_uploads_type' => 0, 'parentgrid_assets' => 0, 'parentgrid_image' => 0, 'parentgrid_imagewidth' => 0, 'parentgrid_imageorient' => 0, 'parentgrid_imagecols' => 2, 'parentgrid_imageborder' => 0, 'parentgrid_media' => 0, 'parentgrid_layout' => '0', 'parentgrid_frame_class' => 'default', 'parentgrid_deleted' => 0, 'parentgrid_cols' => 0, 'parentgrid_space_before_class' => '', 'parentgrid_space_after_class' => '', 'parentgrid_records' => null, 'parentgrid_pages' => null, 'parentgrid_starttime' => 0, 'parentgrid_endtime' => 0, 'parentgrid_colPos' => 1, 'parentgrid_subheader' => '', 'parentgrid_fe_group' => '', 'parentgrid_header_link' => '', 'parentgrid_image_zoom' => 0, 'parentgrid_header_layout' => '0', 'parentgrid_list_type' => '', 'parentgrid_sectionIndex' => 1, 'parentgrid_linkToTop' => 0, 'parentgrid_file_collections' => null, 'parentgrid_filelink_size' => 0, 'parentgrid_filelink_sorting' => '', 'parentgrid_target' => '', 'parentgrid_date' => 0, 'parentgrid_recursive' => 0, 'parentgrid_imageheight' => 0, 'parentgrid_sys_language_uid' => 0, 'parentgrid_pi_flexform' => null, 'parentgrid_accessibility_title' => '', 'parentgrid_accessibility_bypass' => 0, 'parentgrid_accessibility_bypass_text' => '', 'parentgrid_l18n_parent' => 0, 'parentgrid_l18n_diffsource' => 'a:1:{s:6:"hidden";N;}', 'parentgrid_l10n_source' => 0, 'parentgrid_selected_categories' => null, 'parentgrid_category_field' => '', 'parentgrid_table_class' => '', 'parentgrid_table_caption' => null, 'parentgrid_table_delimiter' => 124, 'parentgrid_table_enclosure' => 0, 'parentgrid_table_header_position' => 0, 'parentgrid_table_tfoot' => 0, 'parentgrid_tx_impexp_origuid' => 0, 'parentgrid_l10n_state' => null, 'parentgrid_categories' => 0, 'parentgrid_tx_dce_dce' => 0, 'parentgrid_tx_dce_index' => null, 'parentgrid_tx_dce_new_container' => 0, 'parentgrid_filelink_sorting_direction' => '', 'parentgrid_tx_dce_slug' => '', 'parentgrid_backupColPos' => -2, 'parentgrid_tx_gridelements_backend_layout' => '1cols', 'parentgrid_tx_gridelements_children' => 2, 'parentgrid_tx_gridelements_container' => 0, 'parentgrid_tx_gridelements_columns' => 0, 'parentgrid_gridelements_shortcut_page_order_by' => 0, 'parentgrid_tx_mask_gallery' => 0, 'parentgrid_tx_mask_galleryyear' => '', 'parentgrid_tx_mask_galleryalbum' => 0, 'parentgrid_tx_mask_photoalbum' => 0, 'tx_gridelements_view_columns' => array('')), 'typoscriptObjectPath' => 'tt_content.list.20.members_member', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bfzugch/public_html/new_typo3_v11/typo3temp/var/cache/code/fluid_template/Standard_action_list_ee0935b6d33389880d3b52386e8f47fc4e62af7e.php line 74
$array11 = array (
);$arguments7['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array11);
$arguments7['table'] = 'tt_content';
$renderChildrenClosure8 = ($arguments7['data'] !== null) ? function() use ($arguments7) { return $arguments7['data']; } : $renderChildrenClosure8;
$output6 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

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

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

$output0 .= '

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

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

$output3 .= '
                ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_5064dc9634127e0182c97fc5440308b68ae5212e->{closure}()
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/bfzugch/public_html/new_typo3_v11/typo3temp/var/cache/code/fluid_template/layout_Default_html_5064dc9634127e0182c97fc5440308b68ae5212e.php line 1673
        ';
return $output65;
};

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

$output0 .= '

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

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 108

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:business_friends/Resources/Private/Templates/ContentElements/', 'EXT:dce/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:business_friends/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:business_friends/Resources/Private/Layouts/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(MASK\Mask\Fluid\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:business_friends/Resources/Private/Templates/ContentElements/', 'EXT:dce/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:business_friends/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:business_friends/Resources/Private/Layouts/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:business_friends/Resources/Private/Templates/ContentElements/', 'EXT:dce/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:business_friends/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:business_friends/Resources/Private/Layouts/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))), 'lib.contentElement')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:business_friends/Resources/Private/Templates/ContentElements/', 'EXT:dce/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:business_friends/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:business_friends/Resources/Private/Layouts/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))), 'list')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_gallery' => '< lib.maskContentElement', 'mask_gallery.' => array('templateName' => 'Gallery'), 'mask_photo_album' => '< lib.maskContentElement', 'mask_photo_album.' => array('templateName' => 'PhotoAlbum'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), '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,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'dce_dceuid7' => 'USER', 'dce_dceuid7.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid7'), 'dce_dceuid6' => 'USER', 'dce_dceuid6.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid6'), 'dce_dceuid5' => 'USER', 'dce_dceuid5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid5'), 'dce_dceuid4' => 'USER', 'dce_dceuid4.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid4'), 'dce_dceuid3' => 'USER', 'dce_dceuid3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid3'), 'dce_dceuid1' => 'USER', 'dce_dceuid1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid1')))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_gallery' => '< lib.maskContentElement', 'mask_gallery.' => array('templateName' => 'Gallery'), 'mask_photo_album' => '< lib.maskContentElement', 'mask_photo_album.' => array('templateName' => 'PhotoAlbum'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), '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,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'dce_dceuid7' => 'USER', 'dce_dceuid7.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid7'), 'dce_dceuid6' => 'USER', 'dce_dceuid6.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid6'), 'dce_dceuid5' => 'USER', 'dce_dceuid5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid5'), 'dce_dceuid4' => 'USER', 'dce_dceuid4.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid4'), 'dce_dceuid3' => 'USER', 'dce_dceuid3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid3'), 'dce_dceuid1' => 'USER', 'dce_dceuid1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid1')))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_gallery' => '< lib.maskContentElement', 'mask_gallery.' => array('templateName' => 'Gallery'), 'mask_photo_album' => '< lib.maskContentElement', 'mask_photo_album.' => array('templateName' => 'PhotoAlbum'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), '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,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'dce_dceuid7' => 'USER', 'dce_dceuid7.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid7'), 'dce_dceuid6' => 'USER', 'dce_dceuid6.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid6'), 'dce_dceuid5' => 'USER', 'dce_dceuid5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid5'), 'dce_dceuid4' => 'USER', 'dce_dceuid4.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid4'), 'dce_dceuid3' => 'USER', 'dce_dceuid3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid3'), 'dce_dceuid1' => 'USER', 'dce_dceuid1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid1')), 'tt_content')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_gallery' => '< lib.maskContentElement', 'mask_gallery.' => array('templateName' => 'Gallery'), 'mask_photo_album' => '< lib.maskContentElement', 'mask_photo_album.' => array('templateName' => 'PhotoAlbum'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), '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,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'dce_dceuid7' => 'USER', 'dce_dceuid7.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid7'), 'dce_dceuid6' => 'USER', 'dce_dceuid6.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid6'), 'dce_dceuid5' => 'USER', 'dce_dceuid5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid5'), 'dce_dceuid4' => 'USER', 'dce_dceuid4.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid4'), 'dce_dceuid3' => 'USER', 'dce_dceuid3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid3'), 'dce_dceuid1' => 'USER', 'dce_dceuid1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid1')), '20')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('< tt_content'))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 42
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('< tt_content'))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('< tt_content'))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('< tt_content'))
in /home/bfzugch/public_html/new_typo3_v11/typo3conf/ext/gridelements/Classes/Plugin/Gridelements.php line 675

        // we render each child into the children key to provide them prerendered for usage with your own templating
        $child = $this->cObj->cObjGetSingle(
            $typoScriptSetup['columns.'][$columnSetupKey]['renderObj'],
            $typoScriptSetup['columns.'][$columnSetupKey]['renderObj.']
        );
        // then we assign the prerendered child to the appropriate column
        if (isset($columns[$column_number])) {
            $parentGridData['tx_gridelements_view_columns'][$column_number] .= $child;
at GridElementsTeam\Gridelements\Plugin\Gridelements->renderChildIntoParentColumn(array(''), array('uid' => 68, 'pid' => 4, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1690808721, 'crdate' => 1459348295, 'cruser_id' => 1, 'editlock' => 0, 'hidden' => 0, 'sorting' => 50, 'CType' => 'list', 'header' => '', 'header_position' => '', 'rowDescription' => null, 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 1, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => null, 'pages' => '25', 'starttime' => 0, 'endtime' => 0, 'colPos' => -1, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '1', 'list_type' => 'members_member', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="switchableControllerActions"> <value index="vDEF">Member-&gt;list;Member-&gt;show</value> </field> </language> <language index="lEN"></language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:28:{s:5:"CType";N;s:6:"colPos";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"subheader";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"frame_class";N;s:18:"space_before_class";N;s:17:"space_after_class";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:16:"sys_language_uid";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:25:"tx_gridelements_container";N;s:23:"tx_gridelements_columns";N;}', 'l10n_source' => 0, 'selected_categories' => null, 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_new_container' => 0, 'filelink_sorting_direction' => '', 'tx_dce_slug' => '', 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 189, 'tx_gridelements_columns' => 0, 'gridelements_shortcut_page_order_by' => 0, 'tx_mask_gallery' => 0, 'tx_mask_galleryyear' => '', 'tx_mask_galleryalbum' => 0, 'tx_mask_photoalbum' => 0), array('parentgrid_uid' => 189, 'parentgrid_pid' => 4, 'parentgrid_t3ver_oid' => 0, 'parentgrid_t3ver_wsid' => 0, 'parentgrid_t3ver_state' => 0, 'parentgrid_t3ver_stage' => 0, 'parentgrid_t3ver_count' => 0, 'parentgrid_t3ver_tstamp' => 0, 'parentgrid_t3ver_move_id' => 0, 'parentgrid_t3_origuid' => 0, 'parentgrid_tstamp' => 1690462561, 'parentgrid_crdate' => 1690172411, 'parentgrid_cruser_id' => 5, 'parentgrid_editlock' => 0, 'parentgrid_hidden' => 0, 'parentgrid_sorting' => 100, 'parentgrid_CType' => 'gridelements_pi1', 'parentgrid_header' => '', 'parentgrid_header_position' => '', 'parentgrid_rowDescription' => '', 'parentgrid_bodytext' => null, 'parentgrid_bullets_type' => 0, 'parentgrid_uploads_description' => 0, 'parentgrid_uploads_type' => 0, 'parentgrid_assets' => 0, 'parentgrid_image' => 0, 'parentgrid_imagewidth' => 0, 'parentgrid_imageorient' => 0, 'parentgrid_imagecols' => 2, 'parentgrid_imageborder' => 0, 'parentgrid_media' => 0, 'parentgrid_layout' => '0', 'parentgrid_frame_class' => 'default', 'parentgrid_deleted' => 0, 'parentgrid_cols' => 0, 'parentgrid_space_before_class' => '', 'parentgrid_space_after_class' => '', 'parentgrid_records' => null, 'parentgrid_pages' => null, 'parentgrid_starttime' => 0, 'parentgrid_endtime' => 0, 'parentgrid_colPos' => 1, 'parentgrid_subheader' => '', 'parentgrid_fe_group' => '', 'parentgrid_header_link' => '', 'parentgrid_image_zoom' => 0, 'parentgrid_header_layout' => '0', 'parentgrid_list_type' => '', 'parentgrid_sectionIndex' => 1, 'parentgrid_linkToTop' => 0, 'parentgrid_file_collections' => null, 'parentgrid_filelink_size' => 0, 'parentgrid_filelink_sorting' => '', 'parentgrid_target' => '', 'parentgrid_date' => 0, 'parentgrid_recursive' => 0, 'parentgrid_imageheight' => 0, 'parentgrid_sys_language_uid' => 0, 'parentgrid_pi_flexform' => null, 'parentgrid_accessibility_title' => '', 'parentgrid_accessibility_bypass' => 0, 'parentgrid_accessibility_bypass_text' => '', 'parentgrid_l18n_parent' => 0, 'parentgrid_l18n_diffsource' => 'a:1:{s:6:"hidden";N;}', 'parentgrid_l10n_source' => 0, 'parentgrid_selected_categories' => null, 'parentgrid_category_field' => '', 'parentgrid_table_class' => '', 'parentgrid_table_caption' => null, 'parentgrid_table_delimiter' => 124, 'parentgrid_table_enclosure' => 0, 'parentgrid_table_header_position' => 0, 'parentgrid_table_tfoot' => 0, 'parentgrid_tx_impexp_origuid' => 0, 'parentgrid_l10n_state' => null, 'parentgrid_categories' => 0, 'parentgrid_tx_dce_dce' => 0, 'parentgrid_tx_dce_index' => null, 'parentgrid_tx_dce_new_container' => 0, 'parentgrid_filelink_sorting_direction' => '', 'parentgrid_tx_dce_slug' => '', 'parentgrid_backupColPos' => -2, 'parentgrid_tx_gridelements_backend_layout' => '1cols', 'parentgrid_tx_gridelements_children' => 2, 'parentgrid_tx_gridelements_container' => 0, 'parentgrid_tx_gridelements_columns' => 0, 'parentgrid_gridelements_shortcut_page_order_by' => 0, 'parentgrid_tx_mask_gallery' => 0, 'parentgrid_tx_mask_galleryyear' => '', 'parentgrid_tx_mask_galleryalbum' => 0, 'parentgrid_tx_mask_photoalbum' => 0, 'tx_gridelements_view_columns' => array('')), array('0.' => 1), array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')))
in /home/bfzugch/public_html/new_typo3_v11/typo3conf/ext/gridelements/Classes/Plugin/Gridelements.php line 522
            foreach ($this->cObj->data['tx_gridelements_view_children'] as $child) {
                $rawColumns[$child['tx_gridelements_columns']][] = $child;
                $renderedChild = $child;
                $this->renderChildIntoParentColumn(
                    $columns,
                    $renderedChild,
                    $parentGridData,
                    $parentRecordNumbers,
                    $typoScriptSetup
at GridElementsTeam\Gridelements\Plugin\Gridelements->renderChildrenIntoParentColumns(array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), array('0'))
in /home/bfzugch/public_html/new_typo3_v11/typo3conf/ext/gridelements/Classes/Plugin/Gridelements.php line 125
        // that they have been created in the grid wizard but still be able to get all children
        // within just one SELECT query
        $sortColumns = explode(',', $csvColumns);

        $this->renderChildrenIntoParentColumns($typoScriptSetup, $sortColumns);
        unset($sortColumns);

        // if there are any columns available, we can go on with the render process
        if (!empty($this->cObj->data['tx_gridelements_view_columns'])) {
at GridElementsTeam\Gridelements\Plugin\Gridelements->main('', array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))
at call_user_func_array(array(object(GridElementsTeam\Gridelements\Plugin\Gridelements), 'main'), array('', array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html'))))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5720
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    $classObj->cObj = $this;
                    $content = call_user_func_array($callable, [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))), '')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 43
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))), '10')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html'))))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 42
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html'))))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html'))))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html'))))), '20')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 42
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))), 'gridelements_pi1')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_gallery' => '< lib.maskContentElement', 'mask_gallery.' => array('templateName' => 'Gallery'), 'mask_photo_album' => '< lib.maskContentElement', 'mask_photo_album.' => array('templateName' => 'PhotoAlbum'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), '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,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'dce_dceuid7' => 'USER', 'dce_dceuid7.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid7'), 'dce_dceuid6' => 'USER', 'dce_dceuid6.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid6'), 'dce_dceuid5' => 'USER', 'dce_dceuid5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid5'), 'dce_dceuid4' => 'USER', 'dce_dceuid4.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid4'), 'dce_dceuid3' => 'USER', 'dce_dceuid3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid3'), 'dce_dceuid1' => 'USER', 'dce_dceuid1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid1')))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_gallery' => '< lib.maskContentElement', 'mask_gallery.' => array('templateName' => 'Gallery'), 'mask_photo_album' => '< lib.maskContentElement', 'mask_photo_album.' => array('templateName' => 'PhotoAlbum'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), '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,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'dce_dceuid7' => 'USER', 'dce_dceuid7.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid7'), 'dce_dceuid6' => 'USER', 'dce_dceuid6.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid6'), 'dce_dceuid5' => 'USER', 'dce_dceuid5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid5'), 'dce_dceuid4' => 'USER', 'dce_dceuid4.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid4'), 'dce_dceuid3' => 'USER', 'dce_dceuid3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid3'), 'dce_dceuid1' => 'USER', 'dce_dceuid1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid1')))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_gallery' => '< lib.maskContentElement', 'mask_gallery.' => array('templateName' => 'Gallery'), 'mask_photo_album' => '< lib.maskContentElement', 'mask_photo_album.' => array('templateName' => 'PhotoAlbum'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), '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,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'dce_dceuid7' => 'USER', 'dce_dceuid7.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid7'), 'dce_dceuid6' => 'USER', 'dce_dceuid6.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid6'), 'dce_dceuid5' => 'USER', 'dce_dceuid5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid5'), 'dce_dceuid4' => 'USER', 'dce_dceuid4.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid4'), 'dce_dceuid3' => 'USER', 'dce_dceuid3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid3'), 'dce_dceuid1' => 'USER', 'dce_dceuid1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid1')), 'tt_content')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_gallery' => '< lib.maskContentElement', 'mask_gallery.' => array('templateName' => 'Gallery'), 'mask_photo_album' => '< lib.maskContentElement', 'mask_photo_album.' => array('templateName' => 'PhotoAlbum'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject.' => array('default.' => array('stdWrap.' => array('if.' => array('value' => 'dce_dceuid0', 'isInList.' => array('field' => 'CType'), 'negate' => '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'bfzuggallery_bfzuggallerykey' => 'USER', 'bfzuggallery_bfzuggallerykey.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Bfzuggallery', 'pluginName' => 'Bfzuggallerykey'), 'dce_dce' => 'USER', 'dce_dce.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'Dce'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'gallery_gallerplugin' => 'USER', 'gallery_gallerplugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Gallery', 'pluginName' => 'Gallerplugin'), 'members_member' => 'USER', 'members_member.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Members', 'pluginName' => 'Member'), '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,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), 'udpanel.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udpanel.html')), 'galerie.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisgalerie.html', 'variables.' => array('SpalteMd' => 'TEXT', 'SpalteMd.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteSm' => 'TEXT', 'SpalteSm.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteXs' => 'TEXT', 'SpalteXs.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteLg' => 'TEXT', 'SpalteLg.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'verzeichnisslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/verzeichnisslider.html')), 'bilderslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/bilderslider.html')), 'contentslider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/contentslider.html')), 'tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/tabs.html')), 'udroundbox.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/udroundbox.html')), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/accordion.html')), 'spalten2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid2col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid3col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitte' => 'TEXT', 'SpalteMitte.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'spalten4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:nettgrids/Resources/gridelements/Private/grid4col.html', 'variables.' => array('SpalteLinks' => 'TEXT', 'SpalteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '0', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteLinks' => 'TEXT', 'SpalteMitteLinks.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '1', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteMitteRechts' => 'TEXT', 'SpalteMitteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '2', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'SpalteRechts' => 'TEXT', 'SpalteRechts.' => array('data' => 'field:flexform_cols', 'split.' => array('token' => '-', 'returnKey' => '3', 'cObjNum' => '1', '1.' => array('current' => '1')))))), 'agenda.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Agenda.html')), '1cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column1.html')), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column2.html')), '2cols2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:business_friends/Resources/Private/Templates/Grids/Column22.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'dce_dceuid7' => 'USER', 'dce_dceuid7.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid7'), 'dce_dceuid6' => 'USER', 'dce_dceuid6.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid6'), 'dce_dceuid5' => 'USER', 'dce_dceuid5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid5'), 'dce_dceuid4' => 'USER', 'dce_dceuid4.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid4'), 'dce_dceuid3' => 'USER', 'dce_dceuid3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid3'), 'dce_dceuid1' => 'USER', 'dce_dceuid1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dce', 'pluginName' => 'dceuid1')), '')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 95
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'variables.content')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 322
            if (is_array($cObjType)) {
                continue;
            }
            if (!in_array($variableName, $reservedVariables)) {
                $variables[$variableName] = $this->cObj->cObjGetSingle($cObjType, $variablesToProcess[$variableName . '.'], 'variables.' . $variableName);
            } else {
                throw new \InvalidArgumentException(
                    'Cannot use reserved name "' . $variableName . '" as variable name in FLUIDTEMPLATE.',
                    1288095720
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->getContentObjectVariables(array('templateRootPaths.' => array('EXT:business_friends/Resources/Private/Templates/Page/', 'EXT:business_friends/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:business_friends/Resources/Private/Partials/Page/', 'EXT:business_friends/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:business_friends/Resources/Private/Layouts/Page/', 'EXT:business_friends/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation')), 'file' => 'EXT:business_friends/Resources/Private/Templates/Page/Default.html', 'variables.' => array('top' => 'CONTENT', 'top.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0')), 'content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'footer' => 'CONTENT', 'footer.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'slider' => 'CONTENT', 'slider.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'intro' => 'CONTENT', 'intro.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4'))), 'settings.' => array('logo.' => array('white' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_white.svg', 'yellow' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg', 'default' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg'))))
in /home/bfzugch/public_html/new_typo3_v11/typo3conf/ext/mask/Classes/Fluid/FluidTemplateContentObject.php line 31
     */
    protected function getContentObjectVariables(array $conf = []): array
    {
        // Call Parent Function to maintain core functions
        $variables = parent::getContentObjectVariables($conf);

        // Make some enhancements to data of pages
        if ($this->cObj->getCurrentTable() === 'pages') {
            $data = $variables['data'];
at MASK\Mask\Fluid\FluidTemplateContentObject->getContentObjectVariables(array('templateRootPaths.' => array('EXT:business_friends/Resources/Private/Templates/Page/', 'EXT:business_friends/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:business_friends/Resources/Private/Partials/Page/', 'EXT:business_friends/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:business_friends/Resources/Private/Layouts/Page/', 'EXT:business_friends/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation')), 'file' => 'EXT:business_friends/Resources/Private/Templates/Page/Default.html', 'variables.' => array('top' => 'CONTENT', 'top.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0')), 'content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'footer' => 'CONTENT', 'footer.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'slider' => 'CONTENT', 'slider.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'intro' => 'CONTENT', 'intro.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4'))), 'settings.' => array('logo.' => array('white' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_white.svg', 'yellow' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg', 'default' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg'))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 102
        $this->setLayoutRootPath($conf);
        $this->setPartialRootPath($conf);
        $this->setExtbaseVariables($conf);
        $this->assignSettings($conf);
        $variables = $this->getContentObjectVariables($conf);
        $variables = $this->contentDataProcessor->process($this->cObj, $conf, $variables);

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

at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateRootPaths.' => array('EXT:business_friends/Resources/Private/Templates/Page/', 'EXT:business_friends/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:business_friends/Resources/Private/Partials/Page/', 'EXT:business_friends/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:business_friends/Resources/Private/Layouts/Page/', 'EXT:business_friends/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation')), 'file' => 'EXT:business_friends/Resources/Private/Templates/Page/Default.html', 'variables.' => array('top' => 'CONTENT', 'top.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0')), 'content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'footer' => 'CONTENT', 'footer.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'slider' => 'CONTENT', 'slider.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'intro' => 'CONTENT', 'intro.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4'))), 'settings.' => array('logo.' => array('white' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_white.svg', 'yellow' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg', 'default' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg'))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(MASK\Mask\Fluid\FluidTemplateContentObject), array('templateRootPaths.' => array('EXT:business_friends/Resources/Private/Templates/Page/', 'EXT:business_friends/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:business_friends/Resources/Private/Partials/Page/', 'EXT:business_friends/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:business_friends/Resources/Private/Layouts/Page/', 'EXT:business_friends/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation')), 'file' => 'EXT:business_friends/Resources/Private/Templates/Page/Default.html', 'variables.' => array('top' => 'CONTENT', 'top.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0')), 'content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'footer' => 'CONTENT', 'footer.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'slider' => 'CONTENT', 'slider.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'intro' => 'CONTENT', 'intro.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4'))), 'settings.' => array('logo.' => array('white' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_white.svg', 'yellow' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg', 'default' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg'))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateRootPaths.' => array('EXT:business_friends/Resources/Private/Templates/Page/', 'EXT:business_friends/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:business_friends/Resources/Private/Partials/Page/', 'EXT:business_friends/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:business_friends/Resources/Private/Layouts/Page/', 'EXT:business_friends/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation')), 'file' => 'EXT:business_friends/Resources/Private/Templates/Page/Default.html', 'variables.' => array('top' => 'CONTENT', 'top.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0')), 'content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'footer' => 'CONTENT', 'footer.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'slider' => 'CONTENT', 'slider.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'intro' => 'CONTENT', 'intro.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4'))), 'settings.' => array('logo.' => array('white' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_white.svg', 'yellow' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg', 'default' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg'))), '10')
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('includeCSS.' => array('dp_cookieconsent' => 'EXT:dp_cookieconsent/Resources/Public/css/dp_cookieconsent.css', 'flexslider2' => 'EXT:nettgrids/Resources/gridelements/Public/Flexslider2/flexslider.css', 'photoSwipeCss' => 'fileadmin/skins/2019_01_08_bfzug/css/photoswipe.css', 'photoSwipeSkin' => 'fileadmin/skins/2019_01_08_bfzug/css/photoswipe_skin.css', 'business_friends_layout' => 'fileadmin/skins/2019_01_08_bfzug/css/bf-zug.css', 'fontawesome' => 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css', 'bulma' => 'https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css', 'dynamite' => 'EXT:business_friends/Resources/Public/Css/dynamite.css'), 'includeJSFooter.' => array('dp_cookieconsent' => 'EXT:dp_cookieconsent/Resources/Public/JavaScript/dp_cookieconsent.js', 'powermailJQueryDatepicker' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/jquery.datetimepicker.min.js', 'powermailJQueryFormValidation' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/parsley.min.js', 'powermailJQueryTabs' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Tabs.min.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'business_friends_scripts' => 'EXT:business_friends/Resources/Public/JavaScript/Dist/scripts.js'), 'headerData.' => array('657.' => array('10.' => array('stdWrap.' => array('replacement.' => array('10.' => array('search' => '<script', 'replace' => '<script data-ignore="1" data-cookieconsent="statistics" type="text/plain"'), '20.' => array('search' => 'src=', 'replace' => 'data-src='))))), 'COA', '998.' => array('COA', '10.' => array('wrap' => '<script data-ignore="1" data-cookieconsent="statistics" type="text/plain">|</script>', 'required' => '1')), 'TEXT', '3.' => array('value' => '<meta name="viewport" content="width=device-width, initial-scale=1">')), 'footerData.' => array('COA', '998.' => array('FLUIDTEMPLATE', '20.' => array('file' => 'EXT:dp_cookieconsent/Resources/Private/Layouts/Cookie.html', 'templateName' => 'Cookie', 'templateRootPaths.' => array('EXT:dp_cookieconsent/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:dp_cookieconsent/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:dp_cookieconsent/Resources/Private/Layouts/', ''), 'settings.' => array('url' => '0', 'target' => '_blank', 'theme' => 'edgeless', 'position' => 'bottom-right', 'type' => 'info', 'revokable' => 'true', 'reloadOnRevoke' => 'false', 'checkboxes.' => array('statistics' => 'false', 'marketing' => 'false'), 'overlay.' => array('notice' => 'true', 'box.' => array('background' => '#BA0000', 'text' => '#FFFFFF'), 'button.' => array('background' => '#B81839', 'text' => '#FFFFFF')), 'palette.' => array('popup.' => array('background' => '#333333', 'text' => '#FFFFFF'), 'button.' => array('background' => '#FFC400', 'text' => '#333333'))), 'dataProcessing.' => array('DirkPersky\\DpCookieconsent\\DataProcessing\\CookieScriptsProcessor', '10.' => array('as' => 'dp_cookie_scripts', 'pid' => '0')))), 'TEXT', '1.' => array('value' => '(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-44472712-1\', \'bfzug.ch\');ga(\'send\', \'pageview\');', 'stdWrap.' => array('dataWrap' => '<script>|</script>'))), 'jsInline.' => array(), 'includeJSFooterlibs.' => array('flexslider2' => 'EXT:nettgrids/Resources/gridelements/Public/Flexslider2/jquery.flexslider-min.js', 'photoSwipeJS' => 'fileadmin/skins/2019_01_08_bfzug/js/photoswipe.min.js', 'photoSwipeJS.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'photoSwipeUI' => 'fileadmin/skins/2019_01_08_bfzug/js/photoswipe-ui-default.min.js', 'photoSwipeUI.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'skinJS' => 'fileadmin/skins/2019_01_08_bfzug/js/skin.js', 'skinJS.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0')), 'FLUIDTEMPLATE', '10.' => array('templateRootPaths.' => array('EXT:business_friends/Resources/Private/Templates/Page/', 'EXT:business_friends/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:business_friends/Resources/Private/Partials/Page/', 'EXT:business_friends/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:business_friends/Resources/Private/Layouts/Page/', 'EXT:business_friends/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation')), 'file' => 'EXT:business_friends/Resources/Private/Templates/Page/Default.html', 'variables.' => array('top' => 'CONTENT', 'top.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0')), 'content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'footer' => 'CONTENT', 'footer.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'slider' => 'CONTENT', 'slider.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'intro' => 'CONTENT', 'intro.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4'))), 'settings.' => array('logo.' => array('white' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_white.svg', 'yellow' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg', 'default' => 'fileadmin/skins/2019_01_08_bfzug/images/ci/svg/logo_yellow.svg'))), 'includeJSLibs.' => array('jquery' => 'EXT:business_friends/Resources/Public/JavaScript/Dist/jquery.min.js', 'jquery.' => array('forceOnTop' => '1')), 'includeJS.' => array(), 'typeNum' => '0', 'meta.' => array('abstract.' => array('field' => 'abstract'), 'description.' => array('field' => 'description'), 'keywords.' => array('field' => 'keywords'), 'author' => 'Dynamite - www.dynamite.ch', 'author.' => array('override.' => array('field' => 'author')), 'robots' => 'index, follow', 'revisit-after' => '7 days', 'viewport' => 'width=320, initial-scale=1.0'), 'config.' => array('pageTitleProviders.' => array('record.' => array('provider' => 'TYPO3\\CMS\\Core\\PageTitle\\RecordPageTitleProvider'), 'seo.' => array('provider' => 'TYPO3\\CMS\\Seo\\PageTitle\\SeoTitlePageTitleProvider', 'before' => 'record'), 'dce.' => array('provider' => 'T3\\Dce\\Components\\DetailPage\\PageTitleProvider', 'before' => 'record', 'after' => 'altPageTitle', 'prependWrap' => '|| - |', 'appendWrap' => '| - ||')), 'index_enable' => '1', 'index_externals' => '1', 'index_metatags' => '1', 'absRefPrefix' => 'auto', 'no_cache' => '0', 'uniqueLinkVars' => '1', 'pageTitleFirst' => '1', 'linkVars' => 'L', 'sys_language_uid' => '0', 'sys_language_overlay' => 'hideNoneTranslated', 'sys_language_mode' => 'content_fallback', 'language' => 'de', 'locale_all' => 'de_DE.UTF8', 'htmlTag_setParams' => 'xmlns="http://www.w3.org/1999/xhtml" xml:lang="de-CH"', 'prefixLocalAnchors' => 'all', 'renderCharset' => 'utf-8', 'metaCharset' => 'utf-8', 'doctype' => 'html5', 'removeDefaultJS' => 'external', 'inlineStyle2TempFile' => '1', 'admPanel' => '0', 'debug' => '0', 'sendCacheHeaders' => '1', 'intTarget' => '', 'extTarget' => '', 'disablePrefixComment' => '1', 'headerComment' => ' ================================================================== | Design & Code by: Dynamite - www.dynamite.ch | ==================================================================', 'noScaleUp' => '1', 'compressJs' => '0', 'compressCss' => '0', 'concatenateJs' => '0', 'concatenateCss' => '0', 'tx_extbase.' => array('mvc.' => array('throwPageNotFoundExceptionIfActionCantBeResolved' => '0'), 'persistence.' => array('enableAutomaticCacheClearing' => '1', 'updateReferenceIndex' => '0'), 'features.' => array('skipDefaultArguments' => '0', 'ignoreAllEnableFieldsInBe' => '0')), 'contentObjectExceptionHandler' => '0', 'baseURL' => 'https://bfzug.ch', 'simulateStaticDocuments' => '0', 'cache_clearAtMidnight' => '1', 'noPageTitle' => '2', 'pageTitleSeparator' => '-', 'htmlTag_langKey' => 'de', 'notification_email_urlmode' => '76', 'spamProtectEmailAddresses' => '1', 'spamProtectEmailAddresses_atSubst' => '<span style="display:none;">BOT_DISTRACT_TRIM</span><span style="display:normal;">@</span>', 'spamProtectEmailAddresses_lastDotSubst' => '<span style="display:none;">BOT_DISTRACT_TRIM</span><span style="display:normal;">.</span>'), 'shortcutIcon' => 'fileadmin/favicon.ico', 'bodyTagCObject' => 'TEXT', 'bodyTagCObject.' => array('value.' => array('wrap' => '<body id="pz-member" class="pz-members">'))))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 232
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 198
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 134
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

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

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

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

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/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/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bfzugch/public_html/new_typo3_v11/typo3conf/ext/dp_cookieconsent/Classes/Middleware/PlainRenderingMiddleware.php line 30
    {
        $frontendController = $GLOBALS['TSFE'];
        // check for default handling
        if (!$frontendController->isGeneratePage() || !isset($request->getQueryParams()[self::namespace])) {
            return $handler->handle($request);
        }
        // prepare rendering overwrite
        $frontendController->config['config']['debug'] = 0;
        $frontendController->config['config']['disableAllHeaderCode'] = 1;
at DirkPersky\DpCookieconsent\Middleware\PlainRenderingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/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/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/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/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/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/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/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/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 69
                return new RedirectResponse($externalUrl, 303);
            }
        }

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

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

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

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

    /**
     * Register the backend user as aspect
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/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/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$119->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/bfzugch/public_html/new_typo3_v11/typo3_src-10.4.34/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 131
            }
        }

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

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

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

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

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

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

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

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

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

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

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