Whoops, looks like something went wrong.

Get help in the TYPO3 Wiki

If you need help solving this exception, you can have a look at the TYPO3 Wiki. 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 wiki page.

Find a solution for this exception in the TYPO3 wiki.

(1/1) #1314516809 InvalidArgumentException

File gamelabs/hilfe/gameLabsDialoEditor.swf does not exist.

in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php line 263
        $absoluteFilePath = $this->getAbsolutePath($fileIdentifier);
        // don't use $this->fileExists() because we need the absolute path to the file anyways, so we can directly
        // use PHP's filesystem method.
        if (!file_exists($absoluteFilePath) || !is_file($absoluteFilePath)) {
            throw new \InvalidArgumentException('File ' . $fileIdentifier . ' does not exist.', 1314516809);
        }

        $dirPath = PathUtility::dirname($fileIdentifier);
        $dirPath = $this->canonicalizeAndCheckFolderIdentifier($dirPath);
at TYPO3\CMS\Core\Resource\Driver\LocalDriver->getFileInfoByIdentifier('gamelabs/hilfe/gameLabsDialoEditor.swf', array())
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Resource/ResourceStorage.php line 1450
     * @internal
     */
    public function getFileInfoByIdentifier($identifier, array $propertiesToExtract = [])
    {
        return $this->driver->getFileInfoByIdentifier($identifier, $propertiesToExtract);
    }

    /**
     * Unsets the file and folder name filters, thus making this storage return unfiltered filelists.
at TYPO3\CMS\Core\Resource\ResourceStorage->getFileInfoByIdentifier('gamelabs/hilfe/gameLabsDialoEditor.swf')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Resource/Index/Indexer.php line 332
     * @throws \TYPO3\CMS\Core\Resource\Exception\InvalidHashException
     */
    protected function gatherFileInformationArray($identifier): array
    {
        $fileInfo = $this->storage->getFileInfoByIdentifier($identifier);
        $fileInfo = $this->transformFromDriverFileInfoArrayToFileObjectFormat($fileInfo);
        $fileInfo['type'] = $this->getFileType($fileInfo['mime_type']);
        $fileInfo['sha1'] = $this->storage->hashFileByIdentifier($identifier, 'sha1');
        if (!isset($fileInfo['extension'])) {
at TYPO3\CMS\Core\Resource\Index\Indexer->gatherFileInformationArray('gamelabs/hilfe/gameLabsDialoEditor.swf')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Resource/Index/Indexer.php line 76
    {
        if (!isset($identifier) || !is_string($identifier) || $identifier === '') {
            throw new \InvalidArgumentException('Invalid file identifier given. It must be of type string and not empty. "' . gettype($identifier) . '" given.', 1401732565);
        }
        $fileProperties = $this->gatherFileInformationArray($identifier);
        $record = $this->getFileIndexRepository()->addRaw($fileProperties);
        $fileObject = $this->getResourceFactory()->getFileObject($record['uid'], $record);
        $this->extractRequiredMetaData($fileObject);

at TYPO3\CMS\Core\Resource\Index\Indexer->createIndexEntry('gamelabs/hilfe/gameLabsDialoEditor.swf')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Resource/ResourceFactory.php line 434
        $storage = $this->getStorageObject($storageUid, [], $fileIdentifier);
        if (!$storage->isWithinProcessingFolder($fileIdentifier)) {
            $fileData = $this->getFileIndexRepository()->findOneByStorageUidAndIdentifier($storage->getUid(), $fileIdentifier);
            if ($fileData === false) {
                $fileObject = $this->getIndexer($storage)->createIndexEntry($fileIdentifier);
            } else {
                $fileObject = $this->getFileObject($fileData['uid'], $fileData);
            }
        } else {
at TYPO3\CMS\Core\Resource\ResourceFactory->getFileObjectByStorageAndIdentifier(0, 'gamelabs/hilfe/gameLabsDialoEditor.swf')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Resource/ResourceFactory.php line 416
        }

        // please note that getStorageObject() might modify $fileIdentifier when
        // auto-detecting the best-matching storage to use
        return $this->getFileObjectByStorageAndIdentifier($storageUid, $fileIdentifier);
    }

    /**
     * Gets an file object from storage by file identifier
at TYPO3\CMS\Core\Resource\ResourceFactory->getFileObjectFromCombinedIdentifier('fileadmin/gamelabs/hilfe/gameLabsDialoEditor.swf')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Resource/ResourceFactory.php line 500
        // eliminate double slashes, /./ and /../
        $input = PathUtility::getCanonicalPath(ltrim($input, '/'));
        if (@is_file(Environment::getPublicPath() . '/' . $input)) {
            // only the local file
            return $this->getFileObjectFromCombinedIdentifier($input);
        }
        // only the local path
        return $this->getFolderObjectFromCombinedIdentifier($input);
    }
at TYPO3\CMS\Core\Resource\ResourceFactory->retrieveFileOrFolderObject('fileadmin/gamelabs/hilfe/gameLabsDialoEditor.swf')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/LinkHandling/LegacyLinkNotationConverter.php line 210
            $fragment = null;
            if (strpos($fileIdentifier, '#') !== false) {
                [$fileIdentifier, $fragment] = explode('#', $fileIdentifier, 2);
            }
            $fileOrFolderObject = $this->getResourceFactory()->retrieveFileOrFolderObject($fileIdentifier);
            // Link to a folder or file
            if ($fileOrFolderObject instanceof File) {
                $result['type'] = LinkService::TYPE_FILE;
                $result['file'] = $fileOrFolderObject;
at TYPO3\CMS\Core\LinkHandling\LegacyLinkNotationConverter->getFileOrFolderObjectFromMixedIdentifier('fileadmin/gamelabs/hilfe/gameLabsDialoEditor.swf')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/LinkHandling/LegacyLinkNotationConverter.php line 135
                $result['type'] = LinkService::TYPE_URL;
                $result['url'] = 'http://' . $linkParameter;
            // file (internal) or folder
            } elseif ($containsSlash || $isLocalFile) {
                $result = $this->getFileOrFolderObjectFromMixedIdentifier($linkParameter);
            } else {
                // Integer or alias (alias is without slashes or periods or commas, that is
                // 'nospace,alphanum_x,lower,unique' according to definition in $GLOBALS['TCA']!)
                $result = $this->resolvePageRelatedParameters($linkParameter);
at TYPO3\CMS\Core\LinkHandling\LegacyLinkNotationConverter->resolve('fileadmin/gamelabs/hilfe/gameLabsDialoEditor.swf')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/LinkHandling/LinkService.php line 81
            // Check if the new syntax with "t3://" is used
            return $this->resolveByStringRepresentation($linkParameter);
        } catch (Exception\UnknownUrnException $e) {
            $legacyLinkNotationConverter = GeneralUtility::makeInstance(LegacyLinkNotationConverter::class);
            return $legacyLinkNotationConverter->resolve($linkParameter);
        }
    }

    /**
at TYPO3\CMS\Core\LinkHandling\LinkService->resolve('fileadmin/gamelabs/hilfe/gameLabsDialoEditor.swf')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5404

        // Detecting kind of link and resolve all necessary parameters
        $linkService = GeneralUtility::makeInstance(LinkService::class);
        try {
            $linkDetails = $linkService->resolve($linkParameter);
        } catch (Exception\InvalidPathException $exception) {
            $this->logger->warning('The link could not be generated', ['exception' => $exception]);
            return $linkText;
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->typoLink('here', array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 2665
     * @return string The processed input value
     */
    public function stdWrap_typolink($content = '', $conf = [])
    {
        return $this->typoLink($content, $conf['typolink.']);
    }

    /**
     * wrap
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->stdWrap_typolink('here', array('typolink' => null, 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target')))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 1637
                    $isExecuted[$functionName] = true;
                    $isExecuted[$functionProperties] = true;
                    // Call the function with the prefix stdWrap_ to make sure nobody can execute functions just by adding their name to the TS Array
                    $functionName = 'stdWrap_' . $functionName;
                    $content = $this->{$functionName}($content, $singleConf);
                } elseif ($functionType === 'boolean' && !$conf[$functionName]) {
                    $isExecuted[$functionName] = true;
                    $isExecuted[$functionProperties] = true;
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->stdWrap('here', array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target')))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/TextContentObject.php line 43
            $content = $this->cObj->stdWrap($content, $conf['value.']);
            unset($conf['value.']);
        }
        if (!empty($conf)) {
            $content = $this->cObj->stdWrap($content, $conf);
        }
        return $content;
    }
}
at TYPO3\CMS\Frontend\ContentObject\TextContentObject->render(array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target')))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\TextContentObject), array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target')))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('TEXT', array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target')))), '/parseFunc/.tags.a')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 4333
                            $contentAccum[$contentAccumP] = preg_replace('/^[ ]*' . CR . '?' . LF . '/', '', $contentAccum[$contentAccumP]);
                            $contentAccum[$contentAccumP] = preg_replace('/' . CR . '?' . LF . '[ ]*$/', '', $contentAccum[$contentAccumP]);
                        }
                        $this->data[$this->currentValKey] = $contentAccum[$contentAccumP];
                        $newInput = $this->cObjGetSingle($theName, $theConf, '/parseFunc/.tags.' . $tag[0]);
                        // fetch the content object
                        $contentAccum[$contentAccumP] = $newInput;
                        $contentAccumP++;
                        // If the TypoTag section
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->_parseFunc('1. Everyone can register, play games and produce highscores. This is a platform sponsored by the Federal Austrian Ministry of Education. Therefore it is OpenSource and free to use!<br /><br /><img src="fileadmin/_migrated/RTE/RTEmagicC_hilfe01_01.png.png" data-htmlarea-file-uid="13" data-htmlarea-file-table="sys_file" height="102" width="193" alt="" /><br /><br /> 2. Only users verified as teachers can publish games - students can however create their own games.<br /><br /> 3. After login individual adventure-based games can be created, an adventure-editor is available for game creation after login. A short demo on how to use the editor can be found <a href="fileadmin/gamelabs/hilfe/gameLabsDialoEditor.swf" target="_blank" class="download" title="Initiates file download">here</a>. <br /><br /><img src="fileadmin/_migrated/RTE/RTEmagicC_hilfe2_2_01.jpg.jpg" data-htmlarea-file-uid="15" data-htmlarea-file-table="sys_file" height="228" width="172" alt="" /><br /><br /> 4. All registered and logged-in users can rate games.<br /><br /><img src="fileadmin/_migrated/RTE/RTEmagicC_hilfe3_01.jpg.jpg" data-htmlarea-file-uid="17" data-htmlarea-file-table="sys_file" height="43" width="300" alt="" /><br /><br /> 5. Highscore-lists are managed by the gameserver. Teachers can copy an IFrame-Code to use in Moodle-platforms. If you use the moodle-plugin &quot;<a target="_blank" class="external-link-new-window" title="Opens external link in new window" href="http://www.moodleplugins.org/course/view.php?id=9">exabis games</a>&quot; you can integrate gamelabs.at-games into Moodle-courses easily.<br /><br /><img src="fileadmin/_migrated/RTE/RTEmagicC_hilfe4_01.jpg.jpg" data-htmlarea-file-uid="19" data-htmlarea-file-table="sys_file" height="61" width="300" alt="" /><br /><br /> 6. Regarding game-play: the game is finished once all items have been collected.<br /><br /><img src="fileadmin/_migrated/RTE/RTEmagicC_have_need_e.jpg.jpg" data-htmlarea-file-uid="11" data-htmlarea-file-table="sys_file" height="286" width="300" alt="" /><br /><br /> 7. Individual games can be added. There is an upload-possibility for games based on Flash, otherwise a link can be added to the game that is hosted on a different server.<br /><br /> 8. Pictures and Creative-Commons-licensed content can be obtained&nbsp; <a target="_blank" class="external-link-new-window" title="Opens external link in new window" href="http://search.creativecommons.org/">here</a>.<br /><br /> 9. Information regarding our example-game &quot;Hallo Welt&quot; and didactical background-information can be found <a target="_self" class="internal-link" title="Opens internal link in current window" href="http://gamelabs.at/index.php?id=73&amp;L=0">here</a> (German).', array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'))))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'contenttable', 'always' => '1', 'list' => 'contenttable')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => ''))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 4143
                if (is_array($cfg['stdWrap.'])) {
                    $parts[$k] = $this->stdWrap($parts[$k], $cfg['stdWrap.']);
                }
            } else {
                $parts[$k] = $this->_parseFunc($parts[$k], $conf);
            }
        }
        return implode('', $parts);
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->parseFunc('1. Everyone can register, play games and produce highscores. This is a platform sponsored by the Federal Austrian Ministry of Education. Therefore it is OpenSource and free to use!<br /><br /><img src="fileadmin/_migrated/RTE/RTEmagicC_hilfe01_01.png.png" data-htmlarea-file-uid="13" data-htmlarea-file-table="sys_file" height="102" width="193" alt="" /><br /><br /> 2. Only users verified as teachers can publish games - students can however create their own games.<br /><br /> 3. After login individual adventure-based games can be created, an adventure-editor is available for game creation after login. A short demo on how to use the editor can be found <a href="fileadmin/gamelabs/hilfe/gameLabsDialoEditor.swf" target="_blank" class="download" title="Initiates file download">here</a>. <br /><br /><img src="fileadmin/_migrated/RTE/RTEmagicC_hilfe2_2_01.jpg.jpg" data-htmlarea-file-uid="15" data-htmlarea-file-table="sys_file" height="228" width="172" alt="" /><br /><br /> 4. All registered and logged-in users can rate games.<br /><br /><img src="fileadmin/_migrated/RTE/RTEmagicC_hilfe3_01.jpg.jpg" data-htmlarea-file-uid="17" data-htmlarea-file-table="sys_file" height="43" width="300" alt="" /><br /><br /> 5. Highscore-lists are managed by the gameserver. Teachers can copy an IFrame-Code to use in Moodle-platforms. If you use the moodle-plugin &quot;<a target="_blank" class="external-link-new-window" title="Opens external link in new window" href="http://www.moodleplugins.org/course/view.php?id=9">exabis games</a>&quot; you can integrate gamelabs.at-games into Moodle-courses easily.<br /><br /><img src="fileadmin/_migrated/RTE/RTEmagicC_hilfe4_01.jpg.jpg" data-htmlarea-file-uid="19" data-htmlarea-file-table="sys_file" height="61" width="300" alt="" /><br /><br /> 6. Regarding game-play: the game is finished once all items have been collected.<br /><br /><img src="fileadmin/_migrated/RTE/RTEmagicC_have_need_e.jpg.jpg" data-htmlarea-file-uid="11" data-htmlarea-file-table="sys_file" height="286" width="300" alt="" /><br /><br /> 7. Individual games can be added. There is an upload-possibility for games based on Flash, otherwise a link can be added to the game that is hosted on a different server.<br /><br /> 8. Pictures and Creative-Commons-licensed content can be obtained&nbsp; <a target="_blank" class="external-link-new-window" title="Opens external link in new window" href="http://search.creativecommons.org/">here</a>.<br /><br /> 9. Information regarding our example-game &quot;Hallo Welt&quot; and didactical background-information can be found <a target="_self" class="internal-link" title="Opens internal link in current window" href="http://gamelabs.at/index.php?id=73&amp;L=0">here</a> (German).', array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'))))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'contenttable', 'always' => '1', 'list' => 'contenttable')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => ''))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), '< lib.parseFunc_RTE')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/fluid/Classes/ViewHelpers/Format/HtmlViewHelper.php line 119
        }
        $value = $renderChildrenClosure();
        $contentObject = GeneralUtility::makeInstance(ContentObjectRenderer::class);
        $contentObject->start([]);
        $content = $contentObject->parseFunc($value, [], '< ' . $parseFuncTSPath);
        if (TYPO3_MODE === 'BE') {
            self::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\Format\HtmlViewHelper::renderStatic(array('parseFuncTSPath' => 'lib.parseFunc_RTE'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_Textmedia_783ae3167f775a27f1ef9fbc18616c539685bc3a.php line 468
};
$arguments39 = array();
$arguments39['parseFuncTSPath'] = 'lib.parseFunc_RTE';

$output29 .= TYPO3\CMS\Fluid\ViewHelpers\Format\HtmlViewHelper::renderStatic($arguments39, $renderChildrenClosure40, $renderingContext);

$output29 .= '
    </div>
   ';
at Standard_action_Textmedia_783ae3167f775a27f1ef9fbc18616c539685bc3a->{closure}()
in /data/www/gamelabs.gtn-solutions.com/httpdocs/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 /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_Textmedia_783ae3167f775a27f1ef9fbc18616c539685bc3a.php line 569
   ';
return $output42;
};

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

$output10 .= '

  ';
at Standard_action_Textmedia_783ae3167f775a27f1ef9fbc18616c539685bc3a->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/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 /data/www/gamelabs.gtn-solutions.com/httpdocs/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 /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_794eed114f9591ec53c0e1d71a9694cfa6aab16b.php line 1145
     ),
     $renderingContext
    );

$output6 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments48, $renderChildrenClosure49, $renderingContext);

$output6 .= '
    ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_794eed114f9591ec53c0e1d71a9694cfa6aab16b->{closure}()
in /data/www/gamelabs.gtn-solutions.com/httpdocs/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 /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_794eed114f9591ec53c0e1d71a9694cfa6aab16b.php line 1667
  ';
return $output68;
};

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

$output3 .= '
';
return $output3;
at layout_Default_html_794eed114f9591ec53c0e1d71a9694cfa6aab16b->{closure}()
in /data/www/gamelabs.gtn-solutions.com/httpdocs/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 55
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', $childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_794eed114f9591ec53c0e1d71a9694cfa6aab16b.php line 1675
return $output3;
};
$arguments1 = array();

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

$output0 .= '

';
at layout_Default_html_794eed114f9591ec53c0e1d71a9694cfa6aab16b->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/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 /data/www/gamelabs.gtn-solutions.com/httpdocs/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 /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 107

        $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' => 'Textmedia', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('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'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'Textmedia', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('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'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'Textmedia', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('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'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'lib.contentElement')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
                list($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' => 'Textmedia', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('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'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textmedia')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 46
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), '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' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'CASE', '2.' => array('key.' => array('field' => 'layout'), '< plugin.tt_board_tree'), 'CASE', '4.' => array('key.' => array('field' => 'layout'), '< plugin.tt_board_list', '< plugin.tt_board_tree'), 'gtn_gamemanager_pi1' => '< plugin.tx_gtngamemanager_pi1', 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'mediaupload_pi1' => 'USER', 'mediaupload_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MediaUpload', 'pluginName' => 'Pi1', 'vendorName' => 'Fab'), 'mediauploader_mediaupload' => 'USER', 'mediauploader_mediaupload.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MediaUploader', 'pluginName' => 'MediaUpload', 'vendorName' => 'GTN'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'sr_feuser_register_pi1' => '< plugin.tx_srfeuserregister_pi1')), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), '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')))), 'mailform' => 'COA', 'mailform.' => array('< lib.stdheader', 'FORM', '20.' => array('useDefaultContentObject' => '1', 'accessibility' => '1', 'noWrapAttr' => '1', 'formName' => 'mailform', 'dontMd5FieldNames' => '1', 'layout' => '<div class="csc-mailform-field">###LABEL### ###FIELD###</div>', 'labelWrap.' => array('wrap' => '|'), 'commentWrap.' => array('wrap' => '|'), 'radioWrap.' => array('wrap' => '|<br />', 'accessibilityWrap' => '<fieldset###RADIO_FIELD_ID###><legend>###RADIO_GROUP_LABEL###</legend>|</fieldset>'), 'REQ' => '1', 'REQ.' => array('labelWrap.' => array('wrap' => '|')), 'COMMENT.' => array('layout' => '<div class="csc-mailform-label">###LABEL###</div>'), 'RADIO.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-radio">###FIELD###</span></div>'), 'LABEL.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-label">###FIELD###</span></div>'), 'target' => '', 'target.' => array('override' => '_self'), 'goodMess' => '', 'badMess' => '', 'redirect.' => array('field' => 'pages', 'listNum' => '0'), 'recipient.' => array('field' => 'subheader'), 'data.' => array('field' => 'bodytext'), 'locationData' => '1', 'hiddenFields.' => array('stdWrap.' => array('wrap' => '<div style="display:none;">|</div>')), 'params.' => array('radio' => 'class="csc-mailform-radio"', 'check' => 'class="csc-mailform-check"', 'submit' => 'class="csc-mailform-submit"'), 'stdWrap.' => array('wrap' => '<fieldset class="csc-mailform"> | </fieldset>', 'editIcons' => 'tt_content: bodytext, pages, subheader', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:eIcon.form')), 'prefixComment' => '2 | Mail form inserted:'))), 'search' => 'COA', 'search.' => array('< lib.stdheader', 'SEARCHRESULT', '20.' => array('allowedCols' => 'pages.title-subtitle-keywords-description : tt_content.header-bodytext-imagecaption : tt_address.name-title-address-email-company-city-country : tt_links.title-note-note2-url : tt_board.subject-message-author-email : tt_calender.title-note : tt_products.title-note-itemnumber', 'languageField.' => array('tt_content' => 'sys_language_uid'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'pages_title', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'uid'), 'target' => '', 'target.' => array('override' => '_self'), 'additionalParams.' => array('data' => 'register:SWORD_PARAMS', 'required' => '1', 'wrap' => '&no_cache=1')), 'wrap' => '<h3 class="csc-searchResultHeader">|</h3>'), 'COA', '20.' => array('TEXT', '10.' => array('field' => 'tt_content_bodytext', 'stripHtml' => '1', 'htmlSpecialChars' => '1'), 'stdWrap.' => array('crop' => '200 | ...', 'wrap' => '<p class="csc-searchResult">|</p>'))), 'layout' => 'COA', 'layout.' => array('wrap' => '<table border="0" cellspacing="0" cellpadding="2" class="csc-searchResultInfo"><tr> | </tr></table> ###RESULT###', 'TEXT', '10.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.resultRange', 'wrap' => '<td class="csc-searchResultRange"><p>|</p></td>'), 'TEXT', '20.' => array('value' => '###PREV###&nbsp;&nbsp;&nbsp;###NEXT###', 'wrap' => '<td class="csc-searchResultPrevNext"><p>|</p></td>')), 'noResultObj' => 'COA', 'noResultObj.' => array('TEXT', '10.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.emptySearch', 'wrap' => '<h3 class="csc-noSearchResultMsg">|</h3>')), 'next' => 'TEXT', 'next.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchResultNext'), 'prev' => 'TEXT', 'prev.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchResultPrev'), 'target' => '', 'target.' => array('override' => '_self'), 'range' => '20', 'stdWrap.' => array('prefixComment' => '2 | Search result:')), 'FORM', '30.' => array('useDefaultContentObject' => '1', 'accessibility' => '1', 'noWrapAttr' => '1', 'formName' => 'mailform', 'dontMd5FieldNames' => '1', 'layout' => '<div class="csc-mailform-field">###LABEL### ###FIELD###</div>', 'labelWrap.' => array('wrap' => '|'), 'commentWrap.' => array('wrap' => '|'), 'radioWrap.' => array('wrap' => '|<br />', 'accessibilityWrap' => '<fieldset###RADIO_FIELD_ID###><legend>###RADIO_GROUP_LABEL###</legend>|</fieldset>'), 'REQ' => '1', 'REQ.' => array('labelWrap.' => array('wrap' => '|')), 'COMMENT.' => array('layout' => '<div class="csc-mailform-label">###LABEL###</div>'), 'RADIO.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-radio">###FIELD###</span></div>'), 'LABEL.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-label">###FIELD###</span></div>'), 'target' => '', 'target.' => array('override' => '_self'), 'goodMess' => '', 'badMess' => '', 'locationData' => 'HTTP_POST_VARS', 'hiddenFields.' => array('stdWrap.' => array('wrap' => '<div style="display:none;">|</div>')), 'params.' => array('radio' => 'class="csc-mailform-radio"', 'check' => 'class="csc-mailform-check"', 'submit' => 'class="csc-mailform-submit"'), 'stdWrap.' => array('wrap' => '<table border="0" cellspacing="1" cellpadding="1" class="csc-searchform"> | </table>', 'editIcons' => 'tt_content: bodytext, pages, subheader', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:eIcon.search')), 'prefixComment' => '2 | Search form inserted:'), 'dataArray.' => array('10.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchWord'), 'type' => 'sword=input'), '20.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchIn'), 'type' => 'scols=select', 'valueArray.' => array('10.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.headersKeywords'), 'value' => 'pages.title-subtitle-keywords-description:tt_content.header'), '20.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.pageContent'), 'value' => 'tt_content.header-bodytext-imagecaption'))), '30.' => array('type' => 'stype=hidden', 'value' => 'L0'), '40.' => array('type' => 'submit=submit', 'value.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchButton'))), 'type.' => array('field' => 'pages', 'listNum' => '0'), 'no_cache' => '1'))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), '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' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'CASE', '2.' => array('key.' => array('field' => 'layout'), '< plugin.tt_board_tree'), 'CASE', '4.' => array('key.' => array('field' => 'layout'), '< plugin.tt_board_list', '< plugin.tt_board_tree'), 'gtn_gamemanager_pi1' => '< plugin.tx_gtngamemanager_pi1', 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'mediaupload_pi1' => 'USER', 'mediaupload_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MediaUpload', 'pluginName' => 'Pi1', 'vendorName' => 'Fab'), 'mediauploader_mediaupload' => 'USER', 'mediauploader_mediaupload.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MediaUploader', 'pluginName' => 'MediaUpload', 'vendorName' => 'GTN'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'sr_feuser_register_pi1' => '< plugin.tx_srfeuserregister_pi1')), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), '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')))), 'mailform' => 'COA', 'mailform.' => array('< lib.stdheader', 'FORM', '20.' => array('useDefaultContentObject' => '1', 'accessibility' => '1', 'noWrapAttr' => '1', 'formName' => 'mailform', 'dontMd5FieldNames' => '1', 'layout' => '<div class="csc-mailform-field">###LABEL### ###FIELD###</div>', 'labelWrap.' => array('wrap' => '|'), 'commentWrap.' => array('wrap' => '|'), 'radioWrap.' => array('wrap' => '|<br />', 'accessibilityWrap' => '<fieldset###RADIO_FIELD_ID###><legend>###RADIO_GROUP_LABEL###</legend>|</fieldset>'), 'REQ' => '1', 'REQ.' => array('labelWrap.' => array('wrap' => '|')), 'COMMENT.' => array('layout' => '<div class="csc-mailform-label">###LABEL###</div>'), 'RADIO.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-radio">###FIELD###</span></div>'), 'LABEL.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-label">###FIELD###</span></div>'), 'target' => '', 'target.' => array('override' => '_self'), 'goodMess' => '', 'badMess' => '', 'redirect.' => array('field' => 'pages', 'listNum' => '0'), 'recipient.' => array('field' => 'subheader'), 'data.' => array('field' => 'bodytext'), 'locationData' => '1', 'hiddenFields.' => array('stdWrap.' => array('wrap' => '<div style="display:none;">|</div>')), 'params.' => array('radio' => 'class="csc-mailform-radio"', 'check' => 'class="csc-mailform-check"', 'submit' => 'class="csc-mailform-submit"'), 'stdWrap.' => array('wrap' => '<fieldset class="csc-mailform"> | </fieldset>', 'editIcons' => 'tt_content: bodytext, pages, subheader', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:eIcon.form')), 'prefixComment' => '2 | Mail form inserted:'))), 'search' => 'COA', 'search.' => array('< lib.stdheader', 'SEARCHRESULT', '20.' => array('allowedCols' => 'pages.title-subtitle-keywords-description : tt_content.header-bodytext-imagecaption : tt_address.name-title-address-email-company-city-country : tt_links.title-note-note2-url : tt_board.subject-message-author-email : tt_calender.title-note : tt_products.title-note-itemnumber', 'languageField.' => array('tt_content' => 'sys_language_uid'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'pages_title', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'uid'), 'target' => '', 'target.' => array('override' => '_self'), 'additionalParams.' => array('data' => 'register:SWORD_PARAMS', 'required' => '1', 'wrap' => '&no_cache=1')), 'wrap' => '<h3 class="csc-searchResultHeader">|</h3>'), 'COA', '20.' => array('TEXT', '10.' => array('field' => 'tt_content_bodytext', 'stripHtml' => '1', 'htmlSpecialChars' => '1'), 'stdWrap.' => array('crop' => '200 | ...', 'wrap' => '<p class="csc-searchResult">|</p>'))), 'layout' => 'COA', 'layout.' => array('wrap' => '<table border="0" cellspacing="0" cellpadding="2" class="csc-searchResultInfo"><tr> | </tr></table> ###RESULT###', 'TEXT', '10.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.resultRange', 'wrap' => '<td class="csc-searchResultRange"><p>|</p></td>'), 'TEXT', '20.' => array('value' => '###PREV###&nbsp;&nbsp;&nbsp;###NEXT###', 'wrap' => '<td class="csc-searchResultPrevNext"><p>|</p></td>')), 'noResultObj' => 'COA', 'noResultObj.' => array('TEXT', '10.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.emptySearch', 'wrap' => '<h3 class="csc-noSearchResultMsg">|</h3>')), 'next' => 'TEXT', 'next.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchResultNext'), 'prev' => 'TEXT', 'prev.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchResultPrev'), 'target' => '', 'target.' => array('override' => '_self'), 'range' => '20', 'stdWrap.' => array('prefixComment' => '2 | Search result:')), 'FORM', '30.' => array('useDefaultContentObject' => '1', 'accessibility' => '1', 'noWrapAttr' => '1', 'formName' => 'mailform', 'dontMd5FieldNames' => '1', 'layout' => '<div class="csc-mailform-field">###LABEL### ###FIELD###</div>', 'labelWrap.' => array('wrap' => '|'), 'commentWrap.' => array('wrap' => '|'), 'radioWrap.' => array('wrap' => '|<br />', 'accessibilityWrap' => '<fieldset###RADIO_FIELD_ID###><legend>###RADIO_GROUP_LABEL###</legend>|</fieldset>'), 'REQ' => '1', 'REQ.' => array('labelWrap.' => array('wrap' => '|')), 'COMMENT.' => array('layout' => '<div class="csc-mailform-label">###LABEL###</div>'), 'RADIO.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-radio">###FIELD###</span></div>'), 'LABEL.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-label">###FIELD###</span></div>'), 'target' => '', 'target.' => array('override' => '_self'), 'goodMess' => '', 'badMess' => '', 'locationData' => 'HTTP_POST_VARS', 'hiddenFields.' => array('stdWrap.' => array('wrap' => '<div style="display:none;">|</div>')), 'params.' => array('radio' => 'class="csc-mailform-radio"', 'check' => 'class="csc-mailform-check"', 'submit' => 'class="csc-mailform-submit"'), 'stdWrap.' => array('wrap' => '<table border="0" cellspacing="1" cellpadding="1" class="csc-searchform"> | </table>', 'editIcons' => 'tt_content: bodytext, pages, subheader', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:eIcon.search')), 'prefixComment' => '2 | Search form inserted:'), 'dataArray.' => array('10.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchWord'), 'type' => 'sword=input'), '20.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchIn'), 'type' => 'scols=select', 'valueArray.' => array('10.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.headersKeywords'), 'value' => 'pages.title-subtitle-keywords-description:tt_content.header'), '20.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.pageContent'), 'value' => 'tt_content.header-bodytext-imagecaption'))), '30.' => array('type' => 'stype=hidden', 'value' => 'L0'), '40.' => array('type' => 'submit=submit', 'value.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchButton'))), 'type.' => array('field' => 'pages', 'listNum' => '0'), 'no_cache' => '1'))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), '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' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'CASE', '2.' => array('key.' => array('field' => 'layout'), '< plugin.tt_board_tree'), 'CASE', '4.' => array('key.' => array('field' => 'layout'), '< plugin.tt_board_list', '< plugin.tt_board_tree'), 'gtn_gamemanager_pi1' => '< plugin.tx_gtngamemanager_pi1', 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'mediaupload_pi1' => 'USER', 'mediaupload_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MediaUpload', 'pluginName' => 'Pi1', 'vendorName' => 'Fab'), 'mediauploader_mediaupload' => 'USER', 'mediauploader_mediaupload.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MediaUploader', 'pluginName' => 'MediaUpload', 'vendorName' => 'GTN'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'sr_feuser_register_pi1' => '< plugin.tx_srfeuserregister_pi1')), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), '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')))), 'mailform' => 'COA', 'mailform.' => array('< lib.stdheader', 'FORM', '20.' => array('useDefaultContentObject' => '1', 'accessibility' => '1', 'noWrapAttr' => '1', 'formName' => 'mailform', 'dontMd5FieldNames' => '1', 'layout' => '<div class="csc-mailform-field">###LABEL### ###FIELD###</div>', 'labelWrap.' => array('wrap' => '|'), 'commentWrap.' => array('wrap' => '|'), 'radioWrap.' => array('wrap' => '|<br />', 'accessibilityWrap' => '<fieldset###RADIO_FIELD_ID###><legend>###RADIO_GROUP_LABEL###</legend>|</fieldset>'), 'REQ' => '1', 'REQ.' => array('labelWrap.' => array('wrap' => '|')), 'COMMENT.' => array('layout' => '<div class="csc-mailform-label">###LABEL###</div>'), 'RADIO.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-radio">###FIELD###</span></div>'), 'LABEL.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-label">###FIELD###</span></div>'), 'target' => '', 'target.' => array('override' => '_self'), 'goodMess' => '', 'badMess' => '', 'redirect.' => array('field' => 'pages', 'listNum' => '0'), 'recipient.' => array('field' => 'subheader'), 'data.' => array('field' => 'bodytext'), 'locationData' => '1', 'hiddenFields.' => array('stdWrap.' => array('wrap' => '<div style="display:none;">|</div>')), 'params.' => array('radio' => 'class="csc-mailform-radio"', 'check' => 'class="csc-mailform-check"', 'submit' => 'class="csc-mailform-submit"'), 'stdWrap.' => array('wrap' => '<fieldset class="csc-mailform"> | </fieldset>', 'editIcons' => 'tt_content: bodytext, pages, subheader', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:eIcon.form')), 'prefixComment' => '2 | Mail form inserted:'))), 'search' => 'COA', 'search.' => array('< lib.stdheader', 'SEARCHRESULT', '20.' => array('allowedCols' => 'pages.title-subtitle-keywords-description : tt_content.header-bodytext-imagecaption : tt_address.name-title-address-email-company-city-country : tt_links.title-note-note2-url : tt_board.subject-message-author-email : tt_calender.title-note : tt_products.title-note-itemnumber', 'languageField.' => array('tt_content' => 'sys_language_uid'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'pages_title', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'uid'), 'target' => '', 'target.' => array('override' => '_self'), 'additionalParams.' => array('data' => 'register:SWORD_PARAMS', 'required' => '1', 'wrap' => '&no_cache=1')), 'wrap' => '<h3 class="csc-searchResultHeader">|</h3>'), 'COA', '20.' => array('TEXT', '10.' => array('field' => 'tt_content_bodytext', 'stripHtml' => '1', 'htmlSpecialChars' => '1'), 'stdWrap.' => array('crop' => '200 | ...', 'wrap' => '<p class="csc-searchResult">|</p>'))), 'layout' => 'COA', 'layout.' => array('wrap' => '<table border="0" cellspacing="0" cellpadding="2" class="csc-searchResultInfo"><tr> | </tr></table> ###RESULT###', 'TEXT', '10.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.resultRange', 'wrap' => '<td class="csc-searchResultRange"><p>|</p></td>'), 'TEXT', '20.' => array('value' => '###PREV###&nbsp;&nbsp;&nbsp;###NEXT###', 'wrap' => '<td class="csc-searchResultPrevNext"><p>|</p></td>')), 'noResultObj' => 'COA', 'noResultObj.' => array('TEXT', '10.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.emptySearch', 'wrap' => '<h3 class="csc-noSearchResultMsg">|</h3>')), 'next' => 'TEXT', 'next.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchResultNext'), 'prev' => 'TEXT', 'prev.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchResultPrev'), 'target' => '', 'target.' => array('override' => '_self'), 'range' => '20', 'stdWrap.' => array('prefixComment' => '2 | Search result:')), 'FORM', '30.' => array('useDefaultContentObject' => '1', 'accessibility' => '1', 'noWrapAttr' => '1', 'formName' => 'mailform', 'dontMd5FieldNames' => '1', 'layout' => '<div class="csc-mailform-field">###LABEL### ###FIELD###</div>', 'labelWrap.' => array('wrap' => '|'), 'commentWrap.' => array('wrap' => '|'), 'radioWrap.' => array('wrap' => '|<br />', 'accessibilityWrap' => '<fieldset###RADIO_FIELD_ID###><legend>###RADIO_GROUP_LABEL###</legend>|</fieldset>'), 'REQ' => '1', 'REQ.' => array('labelWrap.' => array('wrap' => '|')), 'COMMENT.' => array('layout' => '<div class="csc-mailform-label">###LABEL###</div>'), 'RADIO.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-radio">###FIELD###</span></div>'), 'LABEL.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-label">###FIELD###</span></div>'), 'target' => '', 'target.' => array('override' => '_self'), 'goodMess' => '', 'badMess' => '', 'locationData' => 'HTTP_POST_VARS', 'hiddenFields.' => array('stdWrap.' => array('wrap' => '<div style="display:none;">|</div>')), 'params.' => array('radio' => 'class="csc-mailform-radio"', 'check' => 'class="csc-mailform-check"', 'submit' => 'class="csc-mailform-submit"'), 'stdWrap.' => array('wrap' => '<table border="0" cellspacing="1" cellpadding="1" class="csc-searchform"> | </table>', 'editIcons' => 'tt_content: bodytext, pages, subheader', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:eIcon.search')), 'prefixComment' => '2 | Search form inserted:'), 'dataArray.' => array('10.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchWord'), 'type' => 'sword=input'), '20.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchIn'), 'type' => 'scols=select', 'valueArray.' => array('10.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.headersKeywords'), 'value' => 'pages.title-subtitle-keywords-description:tt_content.header'), '20.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.pageContent'), 'value' => 'tt_content.header-bodytext-imagecaption'))), '30.' => array('type' => 'stype=hidden', 'value' => 'L0'), '40.' => array('type' => 'submit=submit', 'value.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchButton'))), 'type.' => array('field' => 'pages', 'listNum' => '0'), 'no_cache' => '1'))), 'tt_content')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), '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' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'CASE', '2.' => array('key.' => array('field' => 'layout'), '< plugin.tt_board_tree'), 'CASE', '4.' => array('key.' => array('field' => 'layout'), '< plugin.tt_board_list', '< plugin.tt_board_tree'), 'gtn_gamemanager_pi1' => '< plugin.tx_gtngamemanager_pi1', 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'mediaupload_pi1' => 'USER', 'mediaupload_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MediaUpload', 'pluginName' => 'Pi1', 'vendorName' => 'Fab'), 'mediauploader_mediaupload' => 'USER', 'mediauploader_mediaupload.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MediaUploader', 'pluginName' => 'MediaUpload', 'vendorName' => 'GTN'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'sr_feuser_register_pi1' => '< plugin.tx_srfeuserregister_pi1')), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), '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')))), 'mailform' => 'COA', 'mailform.' => array('< lib.stdheader', 'FORM', '20.' => array('useDefaultContentObject' => '1', 'accessibility' => '1', 'noWrapAttr' => '1', 'formName' => 'mailform', 'dontMd5FieldNames' => '1', 'layout' => '<div class="csc-mailform-field">###LABEL### ###FIELD###</div>', 'labelWrap.' => array('wrap' => '|'), 'commentWrap.' => array('wrap' => '|'), 'radioWrap.' => array('wrap' => '|<br />', 'accessibilityWrap' => '<fieldset###RADIO_FIELD_ID###><legend>###RADIO_GROUP_LABEL###</legend>|</fieldset>'), 'REQ' => '1', 'REQ.' => array('labelWrap.' => array('wrap' => '|')), 'COMMENT.' => array('layout' => '<div class="csc-mailform-label">###LABEL###</div>'), 'RADIO.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-radio">###FIELD###</span></div>'), 'LABEL.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-label">###FIELD###</span></div>'), 'target' => '', 'target.' => array('override' => '_self'), 'goodMess' => '', 'badMess' => '', 'redirect.' => array('field' => 'pages', 'listNum' => '0'), 'recipient.' => array('field' => 'subheader'), 'data.' => array('field' => 'bodytext'), 'locationData' => '1', 'hiddenFields.' => array('stdWrap.' => array('wrap' => '<div style="display:none;">|</div>')), 'params.' => array('radio' => 'class="csc-mailform-radio"', 'check' => 'class="csc-mailform-check"', 'submit' => 'class="csc-mailform-submit"'), 'stdWrap.' => array('wrap' => '<fieldset class="csc-mailform"> | </fieldset>', 'editIcons' => 'tt_content: bodytext, pages, subheader', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:eIcon.form')), 'prefixComment' => '2 | Mail form inserted:'))), 'search' => 'COA', 'search.' => array('< lib.stdheader', 'SEARCHRESULT', '20.' => array('allowedCols' => 'pages.title-subtitle-keywords-description : tt_content.header-bodytext-imagecaption : tt_address.name-title-address-email-company-city-country : tt_links.title-note-note2-url : tt_board.subject-message-author-email : tt_calender.title-note : tt_products.title-note-itemnumber', 'languageField.' => array('tt_content' => 'sys_language_uid'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'pages_title', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'uid'), 'target' => '', 'target.' => array('override' => '_self'), 'additionalParams.' => array('data' => 'register:SWORD_PARAMS', 'required' => '1', 'wrap' => '&no_cache=1')), 'wrap' => '<h3 class="csc-searchResultHeader">|</h3>'), 'COA', '20.' => array('TEXT', '10.' => array('field' => 'tt_content_bodytext', 'stripHtml' => '1', 'htmlSpecialChars' => '1'), 'stdWrap.' => array('crop' => '200 | ...', 'wrap' => '<p class="csc-searchResult">|</p>'))), 'layout' => 'COA', 'layout.' => array('wrap' => '<table border="0" cellspacing="0" cellpadding="2" class="csc-searchResultInfo"><tr> | </tr></table> ###RESULT###', 'TEXT', '10.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.resultRange', 'wrap' => '<td class="csc-searchResultRange"><p>|</p></td>'), 'TEXT', '20.' => array('value' => '###PREV###&nbsp;&nbsp;&nbsp;###NEXT###', 'wrap' => '<td class="csc-searchResultPrevNext"><p>|</p></td>')), 'noResultObj' => 'COA', 'noResultObj.' => array('TEXT', '10.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.emptySearch', 'wrap' => '<h3 class="csc-noSearchResultMsg">|</h3>')), 'next' => 'TEXT', 'next.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchResultNext'), 'prev' => 'TEXT', 'prev.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchResultPrev'), 'target' => '', 'target.' => array('override' => '_self'), 'range' => '20', 'stdWrap.' => array('prefixComment' => '2 | Search result:')), 'FORM', '30.' => array('useDefaultContentObject' => '1', 'accessibility' => '1', 'noWrapAttr' => '1', 'formName' => 'mailform', 'dontMd5FieldNames' => '1', 'layout' => '<div class="csc-mailform-field">###LABEL### ###FIELD###</div>', 'labelWrap.' => array('wrap' => '|'), 'commentWrap.' => array('wrap' => '|'), 'radioWrap.' => array('wrap' => '|<br />', 'accessibilityWrap' => '<fieldset###RADIO_FIELD_ID###><legend>###RADIO_GROUP_LABEL###</legend>|</fieldset>'), 'REQ' => '1', 'REQ.' => array('labelWrap.' => array('wrap' => '|')), 'COMMENT.' => array('layout' => '<div class="csc-mailform-label">###LABEL###</div>'), 'RADIO.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-radio">###FIELD###</span></div>'), 'LABEL.' => array('layout' => '<div class="csc-mailform-field">###LABEL### <span class="csc-mailform-label">###FIELD###</span></div>'), 'target' => '', 'target.' => array('override' => '_self'), 'goodMess' => '', 'badMess' => '', 'locationData' => 'HTTP_POST_VARS', 'hiddenFields.' => array('stdWrap.' => array('wrap' => '<div style="display:none;">|</div>')), 'params.' => array('radio' => 'class="csc-mailform-radio"', 'check' => 'class="csc-mailform-check"', 'submit' => 'class="csc-mailform-submit"'), 'stdWrap.' => array('wrap' => '<table border="0" cellspacing="1" cellpadding="1" class="csc-searchform"> | </table>', 'editIcons' => 'tt_content: bodytext, pages, subheader', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:eIcon.search')), 'prefixComment' => '2 | Search form inserted:'), 'dataArray.' => array('10.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchWord'), 'type' => 'sword=input'), '20.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchIn'), 'type' => 'scols=select', 'valueArray.' => array('10.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.headersKeywords'), 'value' => 'pages.title-subtitle-keywords-description:tt_content.header'), '20.' => array('label.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.pageContent'), 'value' => 'tt_content.header-bodytext-imagecaption'))), '30.' => array('type' => 'stype=hidden', 'value' => 'L0'), '40.' => array('type' => 'submit=submit', 'value.' => array('data' => 'LLL:EXT:tslib_fetce/Resources/Private/Language/locallang.xlf:search.searchButton'))), 'type.' => array('field' => 'pages', 'listNum' => '0'), 'no_cache' => '1'))), '')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 94
                        $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}=0')))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

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

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0'))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0'))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0'))), 'variables.INHALT')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/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('marks.' => array('PIDCREATE' => 'TEXT', 'PIDCREATE.' => array('typolink.' => array('parameter' => '18', 'ATagParams' => 'id=create'), 'value' => '<img src="fileadmin/gamelabs3/images/home_create_en.png" alt="create" />'), 'PIDPLAY' => 'TEXT', 'PIDPLAY.' => array('typolink.' => array('parameter' => '19', 'ATagParams' => 'id=play'), 'value' => '<img src="fileadmin/gamelabs3/images/home_play_en.png" alt="play" />'), 'PIDSHARE' => 'TEXT', 'PIDSHARE.' => array('typolink.' => array('parameter' => '19', 'additionalParams' => '&shre=1', 'ATagParams' => 'id=share'), 'value' => '<img src="fileadmin/gamelabs3/images/home_share_en.png" alt="share" />'), 'PIDHOMETEXT' => 'TEXT', 'PIDHOMETEXT.' => array('value' => 'Create, play and share your own game based learning experience!')), 'file.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield: -1 , backend_layout_next_level, slide', 'override.' => array('data' => 'TSFE:page|backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'fileadmin/gamelabs3/gamelabs.html'), 'TEXT', '1.' => array('value' => 'fileadmin/gamelabs3/1ColumnContentOnly.html'))), 'workOnSubpart' => 'DOCUMENT', 'variables.' => array('startseite' => 'TEXT', 'startseite.' => array('value' => ''), 'loginformuar' => 'TEXT', 'loginformuar.' => array('value' => ''), 'LOGOLINK' => 'IMAGE', 'LOGOLINK.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Logo von Gamelabs" width="263" height="93"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => '1'))), 'LOGOLINKGTN' => 'IMAGE', 'LOGOLINKGTN.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Logo von Gamelabs" width="85" height="30"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => 'www.gtn-solutions.com', 'target' => '_blank', 'extTarget' => '_blank'), 'target' => '_blank')), 'GAMELABSAPP' => 'IMAGE', 'GAMELABSAPP.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Gamelabs die App" width="122" height="118"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => '129'))), 'nav_login' => 'HMENU', 'nav_login.' => array('special' => 'list', 'special.' => array('value' => '9'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_login">|</li>'))), 'nav_register' => 'HMENU', 'nav_register.' => array('special' => 'list', 'special.' => array('value' => '8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_register">|</li>'))), 'nav_meine_spiele' => 'HMENU', 'nav_meine_spiele.' => array('special' => 'list', 'special.' => array('value' => '26'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_meine_spiele">|</li>'))), 'nav_meine_bilder' => 'TEXT', 'nav_meine_bilder.' => array('value' => ''), 'nav_meine_gegenstaende' => 'TEXT', 'nav_meine_gegenstaende.' => array('value' => ''), 'nav_bibliothek' => 'TEXT', 'nav_bibliothek.' => array('value' => ''), 'TEXTOBEN' => 'CONTENT', 'TEXTOBEN.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '{$pid_oben}')), 'PLAY_COVERFLOW' => 'CONTENT', 'PLAY_COVERFLOW.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '119')), 'MENUEOBEN' => 'HMENU', 'MENUEOBEN.' => array('special' => 'directory', 'special.' => array('value' => '114'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li>|</li>'))), 'INHALT' => 'COA', 'INHALT.' => array('CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0'))), 'SPALTERECHTS' => 'CONTENT', 'SPALTERECHTS.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '{$pid_rechts}')), 'SPALTELINKS' => 'HMENU', 'SPALTELINKS.' => array('TMENU', '1.' => array('wrap' => '<ul id="menuelinks">|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">|</li>', 'ATagParams' => 'class="currentlink"')), 'TMENU', '2.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">|</li>', 'ATagParams' => 'class="currentlink"')), 'TMENU', '3.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>-&nbsp;|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">-&nbsp;|</li>', 'ATagParams' => 'class="currentlink"'))), 'SPRACHE' => 'TEXT', 'SPRACHE.' => array('value' => 'english'), 'SPRACHAUSWAHL' => 'TEXT', 'SPRACHAUSWAHL.' => array('value' => 'deutsch', 'typolink.' => array('additionalParams' => '&L=0', 'parameter.' => array('data' => 'page:uid'))), 'BREADCRUMB' => 'COA', 'BREADCRUMB.' => array('TEXT', '5.' => array('value' => 'gamelabs.at', 'typolink.' => array('parameter' => '1')), 'TEXT', '6.' => array('value' => '&#124;'), 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '1| -1'), 'TMENU', '1.' => array('NO.' => array('linkWrap' => '|&#124;|*||&#124;|*|<span class="breadcrumbcur">|</span>')))), 'FOOTER' => 'COA', 'PIDHOME' => 'TEXT', 'PIDHOME.' => array('value' => '&nbsp;', 'typolink.' => array('parameter' => '1', 'ATagParams' => 'id=homelnk')), 'PIDSEARCH' => 'TEXT', 'PIDSEARCH.' => array('value' => 'index.php?id=53'), 'PIDFORUM' => 'TEXT', 'PIDFORUM.' => array('value' => '&nbsp;', 'typolink.' => array('parameter' => '20', 'ATagParams' => 'id=forum')), 'FOOTER.' => array('HMENU', '20.' => array('1.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li class="first">|</li>|*|<li>|</li>')), 'special' => 'directory', 'special.' => array('value' => '5'), 'TMENU')), 'HOME' => 'TEXT', 'HOME.' => array('value' => 'Home', 'typolink.' => array('parameter' => '1')), 'SPALTEN' => 'TEXT', 'SPALTEN.' => array('value' => ''))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 101
        $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('marks.' => array('PIDCREATE' => 'TEXT', 'PIDCREATE.' => array('typolink.' => array('parameter' => '18', 'ATagParams' => 'id=create'), 'value' => '<img src="fileadmin/gamelabs3/images/home_create_en.png" alt="create" />'), 'PIDPLAY' => 'TEXT', 'PIDPLAY.' => array('typolink.' => array('parameter' => '19', 'ATagParams' => 'id=play'), 'value' => '<img src="fileadmin/gamelabs3/images/home_play_en.png" alt="play" />'), 'PIDSHARE' => 'TEXT', 'PIDSHARE.' => array('typolink.' => array('parameter' => '19', 'additionalParams' => '&shre=1', 'ATagParams' => 'id=share'), 'value' => '<img src="fileadmin/gamelabs3/images/home_share_en.png" alt="share" />'), 'PIDHOMETEXT' => 'TEXT', 'PIDHOMETEXT.' => array('value' => 'Create, play and share your own game based learning experience!')), 'file.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield: -1 , backend_layout_next_level, slide', 'override.' => array('data' => 'TSFE:page|backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'fileadmin/gamelabs3/gamelabs.html'), 'TEXT', '1.' => array('value' => 'fileadmin/gamelabs3/1ColumnContentOnly.html'))), 'workOnSubpart' => 'DOCUMENT', 'variables.' => array('startseite' => 'TEXT', 'startseite.' => array('value' => ''), 'loginformuar' => 'TEXT', 'loginformuar.' => array('value' => ''), 'LOGOLINK' => 'IMAGE', 'LOGOLINK.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Logo von Gamelabs" width="263" height="93"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => '1'))), 'LOGOLINKGTN' => 'IMAGE', 'LOGOLINKGTN.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Logo von Gamelabs" width="85" height="30"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => 'www.gtn-solutions.com', 'target' => '_blank', 'extTarget' => '_blank'), 'target' => '_blank')), 'GAMELABSAPP' => 'IMAGE', 'GAMELABSAPP.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Gamelabs die App" width="122" height="118"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => '129'))), 'nav_login' => 'HMENU', 'nav_login.' => array('special' => 'list', 'special.' => array('value' => '9'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_login">|</li>'))), 'nav_register' => 'HMENU', 'nav_register.' => array('special' => 'list', 'special.' => array('value' => '8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_register">|</li>'))), 'nav_meine_spiele' => 'HMENU', 'nav_meine_spiele.' => array('special' => 'list', 'special.' => array('value' => '26'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_meine_spiele">|</li>'))), 'nav_meine_bilder' => 'TEXT', 'nav_meine_bilder.' => array('value' => ''), 'nav_meine_gegenstaende' => 'TEXT', 'nav_meine_gegenstaende.' => array('value' => ''), 'nav_bibliothek' => 'TEXT', 'nav_bibliothek.' => array('value' => ''), 'TEXTOBEN' => 'CONTENT', 'TEXTOBEN.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '{$pid_oben}')), 'PLAY_COVERFLOW' => 'CONTENT', 'PLAY_COVERFLOW.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '119')), 'MENUEOBEN' => 'HMENU', 'MENUEOBEN.' => array('special' => 'directory', 'special.' => array('value' => '114'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li>|</li>'))), 'INHALT' => 'COA', 'INHALT.' => array('CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0'))), 'SPALTERECHTS' => 'CONTENT', 'SPALTERECHTS.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '{$pid_rechts}')), 'SPALTELINKS' => 'HMENU', 'SPALTELINKS.' => array('TMENU', '1.' => array('wrap' => '<ul id="menuelinks">|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">|</li>', 'ATagParams' => 'class="currentlink"')), 'TMENU', '2.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">|</li>', 'ATagParams' => 'class="currentlink"')), 'TMENU', '3.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>-&nbsp;|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">-&nbsp;|</li>', 'ATagParams' => 'class="currentlink"'))), 'SPRACHE' => 'TEXT', 'SPRACHE.' => array('value' => 'english'), 'SPRACHAUSWAHL' => 'TEXT', 'SPRACHAUSWAHL.' => array('value' => 'deutsch', 'typolink.' => array('additionalParams' => '&L=0', 'parameter.' => array('data' => 'page:uid'))), 'BREADCRUMB' => 'COA', 'BREADCRUMB.' => array('TEXT', '5.' => array('value' => 'gamelabs.at', 'typolink.' => array('parameter' => '1')), 'TEXT', '6.' => array('value' => '&#124;'), 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '1| -1'), 'TMENU', '1.' => array('NO.' => array('linkWrap' => '|&#124;|*||&#124;|*|<span class="breadcrumbcur">|</span>')))), 'FOOTER' => 'COA', 'PIDHOME' => 'TEXT', 'PIDHOME.' => array('value' => '&nbsp;', 'typolink.' => array('parameter' => '1', 'ATagParams' => 'id=homelnk')), 'PIDSEARCH' => 'TEXT', 'PIDSEARCH.' => array('value' => 'index.php?id=53'), 'PIDFORUM' => 'TEXT', 'PIDFORUM.' => array('value' => '&nbsp;', 'typolink.' => array('parameter' => '20', 'ATagParams' => 'id=forum')), 'FOOTER.' => array('HMENU', '20.' => array('1.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li class="first">|</li>|*|<li>|</li>')), 'special' => 'directory', 'special.' => array('value' => '5'), 'TMENU')), 'HOME' => 'TEXT', 'HOME.' => array('value' => 'Home', 'typolink.' => array('parameter' => '1')), 'SPALTEN' => 'TEXT', 'SPALTEN.' => array('value' => ''))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('marks.' => array('PIDCREATE' => 'TEXT', 'PIDCREATE.' => array('typolink.' => array('parameter' => '18', 'ATagParams' => 'id=create'), 'value' => '<img src="fileadmin/gamelabs3/images/home_create_en.png" alt="create" />'), 'PIDPLAY' => 'TEXT', 'PIDPLAY.' => array('typolink.' => array('parameter' => '19', 'ATagParams' => 'id=play'), 'value' => '<img src="fileadmin/gamelabs3/images/home_play_en.png" alt="play" />'), 'PIDSHARE' => 'TEXT', 'PIDSHARE.' => array('typolink.' => array('parameter' => '19', 'additionalParams' => '&shre=1', 'ATagParams' => 'id=share'), 'value' => '<img src="fileadmin/gamelabs3/images/home_share_en.png" alt="share" />'), 'PIDHOMETEXT' => 'TEXT', 'PIDHOMETEXT.' => array('value' => 'Create, play and share your own game based learning experience!')), 'file.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield: -1 , backend_layout_next_level, slide', 'override.' => array('data' => 'TSFE:page|backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'fileadmin/gamelabs3/gamelabs.html'), 'TEXT', '1.' => array('value' => 'fileadmin/gamelabs3/1ColumnContentOnly.html'))), 'workOnSubpart' => 'DOCUMENT', 'variables.' => array('startseite' => 'TEXT', 'startseite.' => array('value' => ''), 'loginformuar' => 'TEXT', 'loginformuar.' => array('value' => ''), 'LOGOLINK' => 'IMAGE', 'LOGOLINK.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Logo von Gamelabs" width="263" height="93"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => '1'))), 'LOGOLINKGTN' => 'IMAGE', 'LOGOLINKGTN.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Logo von Gamelabs" width="85" height="30"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => 'www.gtn-solutions.com', 'target' => '_blank', 'extTarget' => '_blank'), 'target' => '_blank')), 'GAMELABSAPP' => 'IMAGE', 'GAMELABSAPP.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Gamelabs die App" width="122" height="118"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => '129'))), 'nav_login' => 'HMENU', 'nav_login.' => array('special' => 'list', 'special.' => array('value' => '9'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_login">|</li>'))), 'nav_register' => 'HMENU', 'nav_register.' => array('special' => 'list', 'special.' => array('value' => '8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_register">|</li>'))), 'nav_meine_spiele' => 'HMENU', 'nav_meine_spiele.' => array('special' => 'list', 'special.' => array('value' => '26'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_meine_spiele">|</li>'))), 'nav_meine_bilder' => 'TEXT', 'nav_meine_bilder.' => array('value' => ''), 'nav_meine_gegenstaende' => 'TEXT', 'nav_meine_gegenstaende.' => array('value' => ''), 'nav_bibliothek' => 'TEXT', 'nav_bibliothek.' => array('value' => ''), 'TEXTOBEN' => 'CONTENT', 'TEXTOBEN.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '{$pid_oben}')), 'PLAY_COVERFLOW' => 'CONTENT', 'PLAY_COVERFLOW.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '119')), 'MENUEOBEN' => 'HMENU', 'MENUEOBEN.' => array('special' => 'directory', 'special.' => array('value' => '114'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li>|</li>'))), 'INHALT' => 'COA', 'INHALT.' => array('CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0'))), 'SPALTERECHTS' => 'CONTENT', 'SPALTERECHTS.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '{$pid_rechts}')), 'SPALTELINKS' => 'HMENU', 'SPALTELINKS.' => array('TMENU', '1.' => array('wrap' => '<ul id="menuelinks">|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">|</li>', 'ATagParams' => 'class="currentlink"')), 'TMENU', '2.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">|</li>', 'ATagParams' => 'class="currentlink"')), 'TMENU', '3.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>-&nbsp;|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">-&nbsp;|</li>', 'ATagParams' => 'class="currentlink"'))), 'SPRACHE' => 'TEXT', 'SPRACHE.' => array('value' => 'english'), 'SPRACHAUSWAHL' => 'TEXT', 'SPRACHAUSWAHL.' => array('value' => 'deutsch', 'typolink.' => array('additionalParams' => '&L=0', 'parameter.' => array('data' => 'page:uid'))), 'BREADCRUMB' => 'COA', 'BREADCRUMB.' => array('TEXT', '5.' => array('value' => 'gamelabs.at', 'typolink.' => array('parameter' => '1')), 'TEXT', '6.' => array('value' => '&#124;'), 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '1| -1'), 'TMENU', '1.' => array('NO.' => array('linkWrap' => '|&#124;|*||&#124;|*|<span class="breadcrumbcur">|</span>')))), 'FOOTER' => 'COA', 'PIDHOME' => 'TEXT', 'PIDHOME.' => array('value' => '&nbsp;', 'typolink.' => array('parameter' => '1', 'ATagParams' => 'id=homelnk')), 'PIDSEARCH' => 'TEXT', 'PIDSEARCH.' => array('value' => 'index.php?id=53'), 'PIDFORUM' => 'TEXT', 'PIDFORUM.' => array('value' => '&nbsp;', 'typolink.' => array('parameter' => '20', 'ATagParams' => 'id=forum')), 'FOOTER.' => array('HMENU', '20.' => array('1.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li class="first">|</li>|*|<li>|</li>')), 'special' => 'directory', 'special.' => array('value' => '5'), 'TMENU')), 'HOME' => 'TEXT', 'HOME.' => array('value' => 'Home', 'typolink.' => array('parameter' => '1')), 'SPALTEN' => 'TEXT', 'SPALTEN.' => array('value' => ''))))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('marks.' => array('PIDCREATE' => 'TEXT', 'PIDCREATE.' => array('typolink.' => array('parameter' => '18', 'ATagParams' => 'id=create'), 'value' => '<img src="fileadmin/gamelabs3/images/home_create_en.png" alt="create" />'), 'PIDPLAY' => 'TEXT', 'PIDPLAY.' => array('typolink.' => array('parameter' => '19', 'ATagParams' => 'id=play'), 'value' => '<img src="fileadmin/gamelabs3/images/home_play_en.png" alt="play" />'), 'PIDSHARE' => 'TEXT', 'PIDSHARE.' => array('typolink.' => array('parameter' => '19', 'additionalParams' => '&shre=1', 'ATagParams' => 'id=share'), 'value' => '<img src="fileadmin/gamelabs3/images/home_share_en.png" alt="share" />'), 'PIDHOMETEXT' => 'TEXT', 'PIDHOMETEXT.' => array('value' => 'Create, play and share your own game based learning experience!')), 'file.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield: -1 , backend_layout_next_level, slide', 'override.' => array('data' => 'TSFE:page|backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'fileadmin/gamelabs3/gamelabs.html'), 'TEXT', '1.' => array('value' => 'fileadmin/gamelabs3/1ColumnContentOnly.html'))), 'workOnSubpart' => 'DOCUMENT', 'variables.' => array('startseite' => 'TEXT', 'startseite.' => array('value' => ''), 'loginformuar' => 'TEXT', 'loginformuar.' => array('value' => ''), 'LOGOLINK' => 'IMAGE', 'LOGOLINK.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Logo von Gamelabs" width="263" height="93"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => '1'))), 'LOGOLINKGTN' => 'IMAGE', 'LOGOLINKGTN.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Logo von Gamelabs" width="85" height="30"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => 'www.gtn-solutions.com', 'target' => '_blank', 'extTarget' => '_blank'), 'target' => '_blank')), 'GAMELABSAPP' => 'IMAGE', 'GAMELABSAPP.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Gamelabs die App" width="122" height="118"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => '129'))), 'nav_login' => 'HMENU', 'nav_login.' => array('special' => 'list', 'special.' => array('value' => '9'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_login">|</li>'))), 'nav_register' => 'HMENU', 'nav_register.' => array('special' => 'list', 'special.' => array('value' => '8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_register">|</li>'))), 'nav_meine_spiele' => 'HMENU', 'nav_meine_spiele.' => array('special' => 'list', 'special.' => array('value' => '26'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_meine_spiele">|</li>'))), 'nav_meine_bilder' => 'TEXT', 'nav_meine_bilder.' => array('value' => ''), 'nav_meine_gegenstaende' => 'TEXT', 'nav_meine_gegenstaende.' => array('value' => ''), 'nav_bibliothek' => 'TEXT', 'nav_bibliothek.' => array('value' => ''), 'TEXTOBEN' => 'CONTENT', 'TEXTOBEN.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '{$pid_oben}')), 'PLAY_COVERFLOW' => 'CONTENT', 'PLAY_COVERFLOW.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '119')), 'MENUEOBEN' => 'HMENU', 'MENUEOBEN.' => array('special' => 'directory', 'special.' => array('value' => '114'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li>|</li>'))), 'INHALT' => 'COA', 'INHALT.' => array('CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0'))), 'SPALTERECHTS' => 'CONTENT', 'SPALTERECHTS.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '{$pid_rechts}')), 'SPALTELINKS' => 'HMENU', 'SPALTELINKS.' => array('TMENU', '1.' => array('wrap' => '<ul id="menuelinks">|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">|</li>', 'ATagParams' => 'class="currentlink"')), 'TMENU', '2.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">|</li>', 'ATagParams' => 'class="currentlink"')), 'TMENU', '3.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>-&nbsp;|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">-&nbsp;|</li>', 'ATagParams' => 'class="currentlink"'))), 'SPRACHE' => 'TEXT', 'SPRACHE.' => array('value' => 'english'), 'SPRACHAUSWAHL' => 'TEXT', 'SPRACHAUSWAHL.' => array('value' => 'deutsch', 'typolink.' => array('additionalParams' => '&L=0', 'parameter.' => array('data' => 'page:uid'))), 'BREADCRUMB' => 'COA', 'BREADCRUMB.' => array('TEXT', '5.' => array('value' => 'gamelabs.at', 'typolink.' => array('parameter' => '1')), 'TEXT', '6.' => array('value' => '&#124;'), 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '1| -1'), 'TMENU', '1.' => array('NO.' => array('linkWrap' => '|&#124;|*||&#124;|*|<span class="breadcrumbcur">|</span>')))), 'FOOTER' => 'COA', 'PIDHOME' => 'TEXT', 'PIDHOME.' => array('value' => '&nbsp;', 'typolink.' => array('parameter' => '1', 'ATagParams' => 'id=homelnk')), 'PIDSEARCH' => 'TEXT', 'PIDSEARCH.' => array('value' => 'index.php?id=53'), 'PIDFORUM' => 'TEXT', 'PIDFORUM.' => array('value' => '&nbsp;', 'typolink.' => array('parameter' => '20', 'ATagParams' => 'id=forum')), 'FOOTER.' => array('HMENU', '20.' => array('1.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li class="first">|</li>|*|<li>|</li>')), 'special' => 'directory', 'special.' => array('value' => '5'), 'TMENU')), 'HOME' => 'TEXT', 'HOME.' => array('value' => 'Home', 'typolink.' => array('parameter' => '1')), 'SPALTEN' => 'TEXT', 'SPALTEN.' => array('value' => ''))), '10')
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 677
        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('tx_srfeuserregister' => 'EXT:sr_feuser_register/Resources/Public/StyleSheets/default.css', 'bootstrap_file' => 'fileadmin/gamelabs/tmpl/css/bootstrap.min.css', 'bootstrap_file.' => array('media' => 'screen')), 'headerData.' => array('COA', '5.' => array('TEXT', '10.' => array('value' => ' <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <style type="text/css"> @import url(fileadmin/gamelabs3/css/gamelabs.css); @import url(fileadmin/gamelabs3/css/fonts.css); @import url(fileadmin/gamelabs3/css/iehacks.css); @import url(fileadmin/gamelabs2/tmpl/css/rte.css); '), 'TEXT', '30.' => array('value' => ' </style> <!--[if IE]> <style type="text/css"> @import url(fileadmin/gamelabs/tmpl/css/ie.css); </style> <![endif]--> ')), 'TEXT', '11.' => array('value' => ' <script> // Set to the same value as the web property used on the site var gaProperty = \'UA-9772345-9\'; // Disable tracking if the opt-out cookie exists. var disableStr = \'ga-disable-\' + gaProperty; if (document.cookie.indexOf(disableStr + \'=true\') > -1) { window[disableStr] = true; } // Opt-out function function gaOptout() { document.cookie = disableStr + \'=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/\'; window[disableStr] = true; alert(\'Das Tracking durch Google Analytics wurde in Ihrem Browser für diese Website deaktiviert.\'); } </script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-9772345-9"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(\'js\', new Date()); gtag(\'config\', \'UA-9772345-9\', { \'anonymize_ip\': true }); </script> ')), 'baseURL' => 'https://gamelabs.at/', 'meta.' => array('keywords' => '', 'description' => '', 'author' => 'GTN Solutions www.gtn-solutions.com'), '10.' => array('marks.' => array('PIDCREATE' => 'TEXT', 'PIDCREATE.' => array('typolink.' => array('parameter' => '18', 'ATagParams' => 'id=create'), 'value' => '<img src="fileadmin/gamelabs3/images/home_create_en.png" alt="create" />'), 'PIDPLAY' => 'TEXT', 'PIDPLAY.' => array('typolink.' => array('parameter' => '19', 'ATagParams' => 'id=play'), 'value' => '<img src="fileadmin/gamelabs3/images/home_play_en.png" alt="play" />'), 'PIDSHARE' => 'TEXT', 'PIDSHARE.' => array('typolink.' => array('parameter' => '19', 'additionalParams' => '&shre=1', 'ATagParams' => 'id=share'), 'value' => '<img src="fileadmin/gamelabs3/images/home_share_en.png" alt="share" />'), 'PIDHOMETEXT' => 'TEXT', 'PIDHOMETEXT.' => array('value' => 'Create, play and share your own game based learning experience!')), 'file.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield: -1 , backend_layout_next_level, slide', 'override.' => array('data' => 'TSFE:page|backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'fileadmin/gamelabs3/gamelabs.html'), 'TEXT', '1.' => array('value' => 'fileadmin/gamelabs3/1ColumnContentOnly.html'))), 'workOnSubpart' => 'DOCUMENT', 'variables.' => array('startseite' => 'TEXT', 'startseite.' => array('value' => ''), 'loginformuar' => 'TEXT', 'loginformuar.' => array('value' => ''), 'LOGOLINK' => 'IMAGE', 'LOGOLINK.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Logo von Gamelabs" width="263" height="93"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => '1'))), 'LOGOLINKGTN' => 'IMAGE', 'LOGOLINKGTN.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Logo von Gamelabs" width="85" height="30"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => 'www.gtn-solutions.com', 'target' => '_blank', 'extTarget' => '_blank'), 'target' => '_blank')), 'GAMELABSAPP' => 'IMAGE', 'GAMELABSAPP.' => array('file' => 'fileadmin/gamelabs/tmpl/images/spacer.gif', 'params' => 'alt="Gamelabs die App" width="122" height="118"', 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter' => '129'))), 'nav_login' => 'HMENU', 'nav_login.' => array('special' => 'list', 'special.' => array('value' => '9'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_login">|</li>'))), 'nav_register' => 'HMENU', 'nav_register.' => array('special' => 'list', 'special.' => array('value' => '8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_register">|</li>'))), 'nav_meine_spiele' => 'HMENU', 'nav_meine_spiele.' => array('special' => 'list', 'special.' => array('value' => '26'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="nav_meine_spiele">|</li>'))), 'nav_meine_bilder' => 'TEXT', 'nav_meine_bilder.' => array('value' => ''), 'nav_meine_gegenstaende' => 'TEXT', 'nav_meine_gegenstaende.' => array('value' => ''), 'nav_bibliothek' => 'TEXT', 'nav_bibliothek.' => array('value' => ''), 'TEXTOBEN' => 'CONTENT', 'TEXTOBEN.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '{$pid_oben}')), 'PLAY_COVERFLOW' => 'CONTENT', 'PLAY_COVERFLOW.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '119')), 'MENUEOBEN' => 'HMENU', 'MENUEOBEN.' => array('special' => 'directory', 'special.' => array('value' => '114'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li>|</li>'))), 'INHALT' => 'COA', 'INHALT.' => array('CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0'))), 'SPALTERECHTS' => 'CONTENT', 'SPALTERECHTS.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '{$pid_rechts}')), 'SPALTELINKS' => 'HMENU', 'SPALTELINKS.' => array('TMENU', '1.' => array('wrap' => '<ul id="menuelinks">|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">|</li>', 'ATagParams' => 'class="currentlink"')), 'TMENU', '2.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">|</li>', 'ATagParams' => 'class="currentlink"')), 'TMENU', '3.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>-&nbsp;|</li>'), 'CUR' => '1', 'CUR.' => array('wrapItemAndSub' => '<li class="current">-&nbsp;|</li>', 'ATagParams' => 'class="currentlink"'))), 'SPRACHE' => 'TEXT', 'SPRACHE.' => array('value' => 'english'), 'SPRACHAUSWAHL' => 'TEXT', 'SPRACHAUSWAHL.' => array('value' => 'deutsch', 'typolink.' => array('additionalParams' => '&L=0', 'parameter.' => array('data' => 'page:uid'))), 'BREADCRUMB' => 'COA', 'BREADCRUMB.' => array('TEXT', '5.' => array('value' => 'gamelabs.at', 'typolink.' => array('parameter' => '1')), 'TEXT', '6.' => array('value' => '&#124;'), 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '1| -1'), 'TMENU', '1.' => array('NO.' => array('linkWrap' => '|&#124;|*||&#124;|*|<span class="breadcrumbcur">|</span>')))), 'FOOTER' => 'COA', 'PIDHOME' => 'TEXT', 'PIDHOME.' => array('value' => '&nbsp;', 'typolink.' => array('parameter' => '1', 'ATagParams' => 'id=homelnk')), 'PIDSEARCH' => 'TEXT', 'PIDSEARCH.' => array('value' => 'index.php?id=53'), 'PIDFORUM' => 'TEXT', 'PIDFORUM.' => array('value' => '&nbsp;', 'typolink.' => array('parameter' => '20', 'ATagParams' => 'id=forum')), 'FOOTER.' => array('HMENU', '20.' => array('1.' => array('wrap' => '<ul>|</ul>', 'NO.' => array('wrapItemAndSub' => '<li class="first">|</li>|*|<li>|</li>')), 'special' => 'directory', 'special.' => array('value' => '5'), 'TMENU')), 'HOME' => 'TEXT', 'HOME.' => array('value' => 'Home', 'typolink.' => array('parameter' => '1')), 'SPALTEN' => 'TEXT', 'SPALTEN.' => array('value' => ''))), 'includeJS.' => array('file0' => 'fileadmin/gamelabs3/jquery.min.js', 'file1' => 'fileadmin/gamelabs/tmpl/js/bootstrap.min.js'), 'typeNum' => '0', 'FLUIDTEMPLATE', 'config.' => array('baseURL' => 'https://www.gamelabs.at/')))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 246
     * @return string
     */
    protected function generatePageContent(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->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 268
     */
    protected function generatePageContentWithHeader(TypoScriptFrontendController $controller, ?SiteLanguage $siteLanguage): string
    {
        // Generate the page content, this has to be first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageContent($controller);
        $pageRenderer = $this->getPageRenderer();
        if ($controller->config['config']['moveJsFromHeaderToFooter'] ?? false) {
            $pageRenderer->enableMoveJsFromHeaderToFooter();
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContentWithHeader(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), null)
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 168
            // If 'disableAllHeaderCode' is set, all the header-code is discarded
            if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
                $controller->content = $this->generatePageContent($controller);
            } else {
                $controller->content = $this->generatePageContentWithHeader($controller, $request->getAttribute('language', null));
            }

            $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 /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 46
        // 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 /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.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()) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 65
                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 118
                GeneralUtility::makeInstance($className)->checkDataSubmission($this->controller);
            }
        }

        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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 99
                    ['code' => PageAccessFailureReasons::CACHEHASH_COMPARISON_FAILED]
                );
            }
        }
        return $handler->handle($request);
    }

    /**
     * Calculates a hash string based on additional parameters in the url.
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 53
        ) {
            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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 171
            }
            $this->controller->determineId();
        }

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

    /**
     * Provides ways to bypass the '?id=[xxx]&type=[xx]' format, using either PATH_INFO or Server Rewrites
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 62

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 86
                $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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreview.php line 110
            // Caching is disabled, because otherwise generated URLs could include the ADMCMD_noBeUser parameter
            $GLOBALS['TSFE']->set_no_cache('GET Parameter ADMCMD_noBeUser was given', true);
        }

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

        // Add a info box to the frontend content
        if ($GLOBALS['TSFE']->doWorkspacePreview() && $GLOBALS['TSFE']->isOutputting()) {
            $previewInfo = $this->renderPreviewInfo($GLOBALS['TSFE'], $request->getAttribute('normalizedParams'));
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreview->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 62
            $simulatingGroup = $this->simulateUserGroup($request);
            $GLOBALS['TSFE']->fePreview = ((int)($simulatingDate || $simulatingGroup));
        }

        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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 68
        // At this point, we later get further route modifiers
        // for bw-compat we update $GLOBALS[TYPO3_REQUEST] to be used later in TSFE.
        $GLOBALS['TYPO3_REQUEST'] = $request;

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 95
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect(GeneralUtility::makeInstance(Context::class), $GLOBALS['BE_USER']);
        }

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

    /**
     * Creates the backend user object and returns it.
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 79

        // Register the frontend user as aspect
        $this->setFrontendUserAspect(GeneralUtility::makeInstance(Context::class), $frontendUser);

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

    /**
     * It's possible to transfer a frontend user session via a GET/POST parameter 'FE_SESSION_KEY'.
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 90
                GeneralUtility::callUserFunction($_funcRef, $_params, $GLOBALS['TSFE']);
            }
        }

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 50
    {
        $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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/PreprocessRequestHook.php line 57
                $hookParameters = [];
                GeneralUtility::callUserFunction($hookFunction, $hookParameters, $hookParameters);
            }
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PreprocessRequestHook->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3conf/ext/div2007/Classes/Middleware/StoreRequest.php line 67
        $extendedRequest = $extendedRequest->withAttribute('routing', $routeResult);

        $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['div2007']['TYPO3_REQUEST'] = $extendedRequest;

        return $handler->handle($request);
    }
}
at JambageCom\Div2007\Middleware\StoreRequest->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 58
        // refactored to have ServerRequest object available where it is needed. This global will be
        // deprecated then and removed.
        $GLOBALS['TYPO3_REQUEST'] = $request;

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 49
        );
        $timeTracker->start();
        $timeTracker->push('');

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                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/data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fbac4550056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 67
     * @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 /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/AbstractApplication.php line 108
    {
        $requestHandler = GeneralUtility::makeInstance($this->requestHandler);
        $dispatcher = $this->createMiddlewareDispatcher($requestHandler);

        return $dispatcher->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 /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/frontend/Classes/Http/Application.php line 69
        if (!$this->checkIfEssentialConfigurationExists()) {
            return $this->installToolRedirect();
        }
        $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 /data/www/gamelabs.gtn-solutions.com/httpdocs/typo3/sysext/core/Classes/Http/AbstractApplication.php line 120
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                \TYPO3\CMS\Core\Http\ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /data/www/gamelabs.gtn-solutions.com/httpdocs/index.php line 24
// 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 /data/www/gamelabs.gtn-solutions.com/httpdocs/index.php line 25
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();
});