Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

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

Find a solution for this exception in the TYPO3 Documentation.

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

Object of type MR\PersonManager\Domain\Model\Person with identity "46" not found.

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

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

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

        if ($result instanceof Error) {
            $this->messages->forProperty(implode('.', $currentPropertyPath))->addError($result);
        }
at TYPO3\CMS\Extbase\Property\PropertyMapper->doMapping('46', 'MR\\PersonManager\\Domain\\Model\\Person', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration), array())
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 122
        }
        $currentPropertyPath = [];
        $this->messages = new Result();
        try {
            $result = $this->doMapping($source, $targetType, $configuration, $currentPropertyPath);
            if ($result instanceof Error) {
                return null;
            }

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

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

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

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

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

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

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'personmanager_persons')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))), '20')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('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'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))), 'CASE', '10.' => array('setCurrent.' => array('field' => 'header', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'header_link'), 'target' => '', 'target.' => array('override' => '{$styles.content.links.target}'))), 'key.' => array('field' => 'header_layout', 'ifEmpty' => '{$content.defaultHeaderType}', 'ifEmpty.' => array('override.' => array('data' => 'register: defaultHeaderType'))), 'TEXT', '1.' => array('current' => '1', 'dataWrap' => '<h1{register:headerClass}>|</h1>'), 'TEXT', '2.' => array('current' => '1', 'dataWrap' => '<h2 class="contentElementHeader">|</h2>'), 'TEXT', '3.' => array('current' => '1', 'dataWrap' => '<h3{register:headerClass}>|</h3>'), 'TEXT', '4.' => array('current' => '1', 'dataWrap' => '<h4{register:headerClass}>|</h4>'), 'TEXT', '5.' => array('current' => '1', 'dataWrap' => '<h5{register:headerClass}>|</h5>')), 'CASE'))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 42
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('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'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))), 'CASE', '10.' => array('setCurrent.' => array('field' => 'header', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'header_link'), 'target' => '', 'target.' => array('override' => '{$styles.content.links.target}'))), 'key.' => array('field' => 'header_layout', 'ifEmpty' => '{$content.defaultHeaderType}', 'ifEmpty.' => array('override.' => array('data' => 'register: defaultHeaderType'))), 'TEXT', '1.' => array('current' => '1', 'dataWrap' => '<h1{register:headerClass}>|</h1>'), 'TEXT', '2.' => array('current' => '1', 'dataWrap' => '<h2 class="contentElementHeader">|</h2>'), 'TEXT', '3.' => array('current' => '1', 'dataWrap' => '<h3{register:headerClass}>|</h3>'), 'TEXT', '4.' => array('current' => '1', 'dataWrap' => '<h4{register:headerClass}>|</h4>'), 'TEXT', '5.' => array('current' => '1', 'dataWrap' => '<h5{register:headerClass}>|</h5>')), 'CASE'))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('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'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))), 'CASE', '10.' => array('setCurrent.' => array('field' => 'header', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'header_link'), 'target' => '', 'target.' => array('override' => '{$styles.content.links.target}'))), 'key.' => array('field' => 'header_layout', 'ifEmpty' => '{$content.defaultHeaderType}', 'ifEmpty.' => array('override.' => array('data' => 'register: defaultHeaderType'))), 'TEXT', '1.' => array('current' => '1', 'dataWrap' => '<h1{register:headerClass}>|</h1>'), 'TEXT', '2.' => array('current' => '1', 'dataWrap' => '<h2 class="contentElementHeader">|</h2>'), 'TEXT', '3.' => array('current' => '1', 'dataWrap' => '<h3{register:headerClass}>|</h3>'), 'TEXT', '4.' => array('current' => '1', 'dataWrap' => '<h4{register:headerClass}>|</h4>'), 'TEXT', '5.' => array('current' => '1', 'dataWrap' => '<h5{register:headerClass}>|</h5>')), 'CASE'))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('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'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))), 'CASE', '10.' => array('setCurrent.' => array('field' => 'header', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'header_link'), 'target' => '', 'target.' => array('override' => '{$styles.content.links.target}'))), 'key.' => array('field' => 'header_layout', 'ifEmpty' => '{$content.defaultHeaderType}', 'ifEmpty.' => array('override.' => array('data' => 'register: defaultHeaderType'))), 'TEXT', '1.' => array('current' => '1', 'dataWrap' => '<h1{register:headerClass}>|</h1>'), 'TEXT', '2.' => array('current' => '1', 'dataWrap' => '<h2 class="contentElementHeader">|</h2>'), 'TEXT', '3.' => array('current' => '1', 'dataWrap' => '<h3{register:headerClass}>|</h3>'), 'TEXT', '4.' => array('current' => '1', 'dataWrap' => '<h4{register:headerClass}>|</h4>'), 'TEXT', '5.' => array('current' => '1', 'dataWrap' => '<h5{register:headerClass}>|</h5>')), 'CASE'), 'list')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('mobileClass.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'frame_class'), 'default' => 'TEXT', 'custom-100' => 'TEXT', 'custom-101' => 'TEXT', 'custom-101.' => array('value' => 'notMobile'), 'custom-102' => 'TEXT', 'custom-102.' => array('value' => 'mobile'), 'custom-103' => 'TEXT', 'custom-103.' => array('value' => 'mobileFullWidth'), 'custom-104' => 'TEXT', 'custom-104.' => array('value' => 'mobileHalfWidth')))), 'CASE', '50.' => array('key.' => array('field' => 'layout'), 'TEXT', '100.' => array('value' => '<div class="contentElement {register:mobileClass} fullWidth">|</div>', 'insertData' => '1'), 'TEXT', '101.' => array('value' => '<div class="contentElement {register:mobileClass} halfWidth">|</div>', 'insertData' => '1'), 'TEXT', '102.' => array('value' => '<div class="contentElement {register:mobileClass} column twoCol">|</div>', 'insertData' => '1'), 'TEXT', '103.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol">|</div>', 'insertData' => '1'), 'TEXT', '105.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol right">|</div>', 'insertData' => '1'), 'TEXT', '104.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol rightWidget">|</div>', 'insertData' => '1'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="contentElement {register:mobileClass} fullWidth">|</div>', 'insertData' => '1')), 'if.' => array('equals.' => array('field' => 'colPos'), 'value' => '0')))), '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' => 'COA', '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'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))), 'CASE', '10.' => array('setCurrent.' => array('field' => 'header', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'header_link'), 'target' => '', 'target.' => array('override' => '{$styles.content.links.target}'))), 'key.' => array('field' => 'header_layout', 'ifEmpty' => '{$content.defaultHeaderType}', 'ifEmpty.' => array('override.' => array('data' => 'register: defaultHeaderType'))), 'TEXT', '1.' => array('current' => '1', 'dataWrap' => '<h1{register:headerClass}>|</h1>'), 'TEXT', '2.' => array('current' => '1', 'dataWrap' => '<h2 class="contentElementHeader">|</h2>'), 'TEXT', '3.' => array('current' => '1', 'dataWrap' => '<h3{register:headerClass}>|</h3>'), 'TEXT', '4.' => array('current' => '1', 'dataWrap' => '<h4{register:headerClass}>|</h4>'), 'TEXT', '5.' => array('current' => '1', 'dataWrap' => '<h5{register:headerClass}>|</h5>')), 'CASE'), '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' => 'COA_INT', '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')), 'wrap' => '<article>|</article>'), 'COA', '10.' => array('< lib.stdheader', 'TEXT', '10.' => array('data' => 'field:crdate', 'date' => 'd.m.Y', 'wrap' => '<h4>|</h4>'), 'CONTENT', '15.' => array('wrap' => '|', 'table' => 'sys_category', 'select.' => array('pidInList' => '2', 'join' => 'sys_category_record_mm ON(sys_category_record_mm.uid_local=sys_category.uid)', 'where' => 'sys_category_record_mm.tablenames="tt_content"', 'andWhere.' => array('dataWrap' => 'sys_category_record_mm.uid_foreign = {field:uid}')), 'renderObj' => 'TEXT', 'renderObj.' => array('field' => 'title', 'wrap' => '<h5>|</h5>', 'typolink.' => array('parameter.' => array('data' => 'field:tx_hsvbase_pageid')))), 'stdWrap.' => array('wrap' => '<hgroup>|<div class="clear"></div></hgroup>')), 'FILES', '20.' => array('references.' => array('cObject' => 'CONTENT', 'cObject.' => array('table' => 'sys_file_reference', 'select.' => array('andWhere.' => array('data' => 'field:uid', 'dataWrap' => 'uid_foreign=|'), 'orderBy' => 'title DESC'), 'renderObj' => 'TEXT', 'renderObj.' => array('field' => 'uid', 'wrap' => '|,'))), 'collections.' => array('field' => 'file_collections'), 'folders.' => array('field' => 'select_key'), 'select.' => array('sorting.' => array('field' => 'size', 'direction' => 'DESC')), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:originalUid // file:current:uid'), 'width' => '150'), 'stdWrap.' => array('if.' => array('value' => '1', 'isGreaterThan.' => array('field' => 'layout')), 'typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'IMAGE', '15.' => array('file.' => array('import' => 'typo3/gfx/fileicons/', 'import.' => array('data' => 'file:current:extension', 'case' => 'lower', 'wrap' => '|.gif')), 'stdWrap.' => array('if.' => array('value' => '0', 'isGreaterThan.' => array('field' => 'layout'), 'isFalse.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'file:current:originalUid // file:current:uid'), 'width' => '150'), 'stdWrap.' => array('if.' => array('value' => '1', 'isGreaterThan.' => array(*DEEP NESTED ARRAY*)))))), 'typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'COA', '20.' => array('TEXT', '10.' => array('data' => 'file:current:title', 'htmlSpecialChars' => '1', 'required' => '1', 'replacement.' => array('5.' => array('search' => '/(\\d\\d\\d\\d)\\.(\\d\\d)\\.(\\d\\d)/', 'replace' => '\\3.\\2.\\1', 'useRegExp' => '1'), '10.' => array('search' => '_', 'replace.' => array('char' => '32')), '_20.' => array('search' => '/(.*)(\\..*)/', 'replace' => '\\1', 'useRegExp' => '1')), 'noTrimWrap' => '|<span class="downloadDate">|</span> <span class="downloadSpacer">&#124;</span> {file:current:description}|', 'noTrimWrap.' => array('insertData' => '1')), 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'TEXT', '40.' => array('if.' => array('isTrue.' => array('field' => 'filelink_size')), 'data' => 'file:current:size', 'wrap' => '<span class="csc-uploads-fileSize">|</span>', 'bytes' => '1', 'bytes.' => array('labels' => '{$styles.content.uploads.filesizeBytesLabels}')), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '<li>|</li>'))), 'stdWrap.' => array('editIcons' => 'tt_content: media, layout [table_bgColor|table_border|table_cellspacing|table_cellpadding], filelink_size', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.filelist')), 'prefixComment' => '2 | File list:', 'dataWrap' => '<ul class="downloadList">|</ul>'))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'newslist' => 'COA', 'newslist.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LIST', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))), 'stdWrap.' => array('wrap' => '<div class="contentContainer">|</div>')), 'results' => 'COA', 'results.' => array('< lib.stdheader', 'COA', '20.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '26', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LIST2', 'limit' => '100000000', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), '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'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), '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'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array(*DEEP NESTED ARRAY*), 'title.' => array(*DEEP NESTED ARRAY*), 'ATagParams.' => array(*DEEP NESTED ARRAY*), 'target.' => array(*DEEP NESTED ARRAY*), 'extTarget.' => array(*DEEP NESTED ARRAY*)))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array(*DEEP NESTED ARRAY*))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array(*DEEP NESTED ARRAY*)), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array(*DEEP NESTED ARRAY*), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array(*DEEP NESTED ARRAY*)), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '26', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid'))), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'if.' => array('isTrue.' => array('field' => 'shortcut'))))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array(*DEEP NESTED ARRAY*), 'title.' => array(*DEEP NESTED ARRAY*), 'ATagParams.' => array(*DEEP NESTED ARRAY*), 'target.' => array(*DEEP NESTED ARRAY*), 'extTarget.' => array(*DEEP NESTED ARRAY*)))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))))), 'newslatest' => 'COA', 'newslatest.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LATEST', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))), 'stdWrap.' => array('wrap' => '<div class="contentContainer">|</div>')), 'newsarticle' => 'COA', 'newsarticle.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'SINGLE', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"'))))), 'footerlogo' => 'COA', 'footerlogo.' => array('LOAD_REGISTER', '5.' => array('headerLink.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'header_link'))), 'FILES', '10.' => array('references.' => array('table' => 'tt_content', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'IMAGE', 'renderObj.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'maxH' => '100', 'maxW' => '100'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'file:current:link', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:headerLink'), 'if.' => array('isTrue.' => array('data' => 'register:headerLink'))))), 'extTarget' => '_blank')))), 'stdWrap.' => array('wrap' => '<span class="footerLogo">|</span>')), 'imagegallery' => '< lib.contentElement', 'imagegallery.' => array('templateName' => 'ImageGallery', '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')))), 'ticker' => 'COA', 'ticker.' => array('TEXT', '10.' => array('field' => 'bodytext', 'replacement.' => array('5.' => array('search' => '/<p[^>]*>/', 'replace' => '<li>', 'useRegExp' => '1'), '10.' => array('search' => '/<\\/p>/', 'replace' => '</li>', 'useRegExp' => '1')), 'parseFunc' => '< lib.parseFunc_RTE'), 'stdWrap.' => array('wrap' => '<article class="ticker"><ul>|</ul></article>'))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('mobileClass.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'frame_class'), 'default' => 'TEXT', 'custom-100' => 'TEXT', 'custom-101' => 'TEXT', 'custom-101.' => array('value' => 'notMobile'), 'custom-102' => 'TEXT', 'custom-102.' => array('value' => 'mobile'), 'custom-103' => 'TEXT', 'custom-103.' => array('value' => 'mobileFullWidth'), 'custom-104' => 'TEXT', 'custom-104.' => array('value' => 'mobileHalfWidth')))), 'CASE', '50.' => array('key.' => array('field' => 'layout'), 'TEXT', '100.' => array('value' => '<div class="contentElement {register:mobileClass} fullWidth">|</div>', 'insertData' => '1'), 'TEXT', '101.' => array('value' => '<div class="contentElement {register:mobileClass} halfWidth">|</div>', 'insertData' => '1'), 'TEXT', '102.' => array('value' => '<div class="contentElement {register:mobileClass} column twoCol">|</div>', 'insertData' => '1'), 'TEXT', '103.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol">|</div>', 'insertData' => '1'), 'TEXT', '105.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol right">|</div>', 'insertData' => '1'), 'TEXT', '104.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol rightWidget">|</div>', 'insertData' => '1'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="contentElement {register:mobileClass} fullWidth">|</div>', 'insertData' => '1')), 'if.' => array('equals.' => array('field' => 'colPos'), 'value' => '0')))), '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' => 'COA', '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'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))), 'CASE', '10.' => array('setCurrent.' => array('field' => 'header', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'header_link'), 'target' => '', 'target.' => array('override' => '{$styles.content.links.target}'))), 'key.' => array('field' => 'header_layout', 'ifEmpty' => '{$content.defaultHeaderType}', 'ifEmpty.' => array('override.' => array('data' => 'register: defaultHeaderType'))), 'TEXT', '1.' => array('current' => '1', 'dataWrap' => '<h1{register:headerClass}>|</h1>'), 'TEXT', '2.' => array('current' => '1', 'dataWrap' => '<h2 class="contentElementHeader">|</h2>'), 'TEXT', '3.' => array('current' => '1', 'dataWrap' => '<h3{register:headerClass}>|</h3>'), 'TEXT', '4.' => array('current' => '1', 'dataWrap' => '<h4{register:headerClass}>|</h4>'), 'TEXT', '5.' => array('current' => '1', 'dataWrap' => '<h5{register:headerClass}>|</h5>')), 'CASE'), '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' => 'COA_INT', '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')), 'wrap' => '<article>|</article>'), 'COA', '10.' => array('< lib.stdheader', 'TEXT', '10.' => array('data' => 'field:crdate', 'date' => 'd.m.Y', 'wrap' => '<h4>|</h4>'), 'CONTENT', '15.' => array('wrap' => '|', 'table' => 'sys_category', 'select.' => array('pidInList' => '2', 'join' => 'sys_category_record_mm ON(sys_category_record_mm.uid_local=sys_category.uid)', 'where' => 'sys_category_record_mm.tablenames="tt_content"', 'andWhere.' => array('dataWrap' => 'sys_category_record_mm.uid_foreign = {field:uid}')), 'renderObj' => 'TEXT', 'renderObj.' => array('field' => 'title', 'wrap' => '<h5>|</h5>', 'typolink.' => array('parameter.' => array('data' => 'field:tx_hsvbase_pageid')))), 'stdWrap.' => array('wrap' => '<hgroup>|<div class="clear"></div></hgroup>')), 'FILES', '20.' => array('references.' => array('cObject' => 'CONTENT', 'cObject.' => array('table' => 'sys_file_reference', 'select.' => array('andWhere.' => array('data' => 'field:uid', 'dataWrap' => 'uid_foreign=|'), 'orderBy' => 'title DESC'), 'renderObj' => 'TEXT', 'renderObj.' => array('field' => 'uid', 'wrap' => '|,'))), 'collections.' => array('field' => 'file_collections'), 'folders.' => array('field' => 'select_key'), 'select.' => array('sorting.' => array('field' => 'size', 'direction' => 'DESC')), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:originalUid // file:current:uid'), 'width' => '150'), 'stdWrap.' => array('if.' => array('value' => '1', 'isGreaterThan.' => array('field' => 'layout')), 'typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'IMAGE', '15.' => array('file.' => array('import' => 'typo3/gfx/fileicons/', 'import.' => array('data' => 'file:current:extension', 'case' => 'lower', 'wrap' => '|.gif')), 'stdWrap.' => array('if.' => array('value' => '0', 'isGreaterThan.' => array('field' => 'layout'), 'isFalse.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'file:current:originalUid // file:current:uid'), 'width' => '150'), 'stdWrap.' => array('if.' => array('value' => '1', 'isGreaterThan.' => array(*DEEP NESTED ARRAY*)))))), 'typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'COA', '20.' => array('TEXT', '10.' => array('data' => 'file:current:title', 'htmlSpecialChars' => '1', 'required' => '1', 'replacement.' => array('5.' => array('search' => '/(\\d\\d\\d\\d)\\.(\\d\\d)\\.(\\d\\d)/', 'replace' => '\\3.\\2.\\1', 'useRegExp' => '1'), '10.' => array('search' => '_', 'replace.' => array('char' => '32')), '_20.' => array('search' => '/(.*)(\\..*)/', 'replace' => '\\1', 'useRegExp' => '1')), 'noTrimWrap' => '|<span class="downloadDate">|</span> <span class="downloadSpacer">&#124;</span> {file:current:description}|', 'noTrimWrap.' => array('insertData' => '1')), 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'TEXT', '40.' => array('if.' => array('isTrue.' => array('field' => 'filelink_size')), 'data' => 'file:current:size', 'wrap' => '<span class="csc-uploads-fileSize">|</span>', 'bytes' => '1', 'bytes.' => array('labels' => '{$styles.content.uploads.filesizeBytesLabels}')), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '<li>|</li>'))), 'stdWrap.' => array('editIcons' => 'tt_content: media, layout [table_bgColor|table_border|table_cellspacing|table_cellpadding], filelink_size', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.filelist')), 'prefixComment' => '2 | File list:', 'dataWrap' => '<ul class="downloadList">|</ul>'))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'newslist' => 'COA', 'newslist.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LIST', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))), 'stdWrap.' => array('wrap' => '<div class="contentContainer">|</div>')), 'results' => 'COA', 'results.' => array('< lib.stdheader', 'COA', '20.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '26', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LIST2', 'limit' => '100000000', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), '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'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), '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'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array(*DEEP NESTED ARRAY*), 'title.' => array(*DEEP NESTED ARRAY*), 'ATagParams.' => array(*DEEP NESTED ARRAY*), 'target.' => array(*DEEP NESTED ARRAY*), 'extTarget.' => array(*DEEP NESTED ARRAY*)))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array(*DEEP NESTED ARRAY*))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array(*DEEP NESTED ARRAY*)), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array(*DEEP NESTED ARRAY*), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array(*DEEP NESTED ARRAY*)), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '26', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid'))), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'if.' => array('isTrue.' => array('field' => 'shortcut'))))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array(*DEEP NESTED ARRAY*), 'title.' => array(*DEEP NESTED ARRAY*), 'ATagParams.' => array(*DEEP NESTED ARRAY*), 'target.' => array(*DEEP NESTED ARRAY*), 'extTarget.' => array(*DEEP NESTED ARRAY*)))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))))), 'newslatest' => 'COA', 'newslatest.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LATEST', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))), 'stdWrap.' => array('wrap' => '<div class="contentContainer">|</div>')), 'newsarticle' => 'COA', 'newsarticle.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'SINGLE', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"'))))), 'footerlogo' => 'COA', 'footerlogo.' => array('LOAD_REGISTER', '5.' => array('headerLink.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'header_link'))), 'FILES', '10.' => array('references.' => array('table' => 'tt_content', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'IMAGE', 'renderObj.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'maxH' => '100', 'maxW' => '100'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'file:current:link', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:headerLink'), 'if.' => array('isTrue.' => array('data' => 'register:headerLink'))))), 'extTarget' => '_blank')))), 'stdWrap.' => array('wrap' => '<span class="footerLogo">|</span>')), 'imagegallery' => '< lib.contentElement', 'imagegallery.' => array('templateName' => 'ImageGallery', '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')))), 'ticker' => 'COA', 'ticker.' => array('TEXT', '10.' => array('field' => 'bodytext', 'replacement.' => array('5.' => array('search' => '/<p[^>]*>/', 'replace' => '<li>', 'useRegExp' => '1'), '10.' => array('search' => '/<\\/p>/', 'replace' => '</li>', 'useRegExp' => '1')), 'parseFunc' => '< lib.parseFunc_RTE'), 'stdWrap.' => array('wrap' => '<article class="ticker"><ul>|</ul></article>'))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('mobileClass.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'frame_class'), 'default' => 'TEXT', 'custom-100' => 'TEXT', 'custom-101' => 'TEXT', 'custom-101.' => array('value' => 'notMobile'), 'custom-102' => 'TEXT', 'custom-102.' => array('value' => 'mobile'), 'custom-103' => 'TEXT', 'custom-103.' => array('value' => 'mobileFullWidth'), 'custom-104' => 'TEXT', 'custom-104.' => array('value' => 'mobileHalfWidth')))), 'CASE', '50.' => array('key.' => array('field' => 'layout'), 'TEXT', '100.' => array('value' => '<div class="contentElement {register:mobileClass} fullWidth">|</div>', 'insertData' => '1'), 'TEXT', '101.' => array('value' => '<div class="contentElement {register:mobileClass} halfWidth">|</div>', 'insertData' => '1'), 'TEXT', '102.' => array('value' => '<div class="contentElement {register:mobileClass} column twoCol">|</div>', 'insertData' => '1'), 'TEXT', '103.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol">|</div>', 'insertData' => '1'), 'TEXT', '105.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol right">|</div>', 'insertData' => '1'), 'TEXT', '104.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol rightWidget">|</div>', 'insertData' => '1'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="contentElement {register:mobileClass} fullWidth">|</div>', 'insertData' => '1')), 'if.' => array('equals.' => array('field' => 'colPos'), 'value' => '0')))), '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' => 'COA', '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'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))), 'CASE', '10.' => array('setCurrent.' => array('field' => 'header', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'header_link'), 'target' => '', 'target.' => array('override' => '{$styles.content.links.target}'))), 'key.' => array('field' => 'header_layout', 'ifEmpty' => '{$content.defaultHeaderType}', 'ifEmpty.' => array('override.' => array('data' => 'register: defaultHeaderType'))), 'TEXT', '1.' => array('current' => '1', 'dataWrap' => '<h1{register:headerClass}>|</h1>'), 'TEXT', '2.' => array('current' => '1', 'dataWrap' => '<h2 class="contentElementHeader">|</h2>'), 'TEXT', '3.' => array('current' => '1', 'dataWrap' => '<h3{register:headerClass}>|</h3>'), 'TEXT', '4.' => array('current' => '1', 'dataWrap' => '<h4{register:headerClass}>|</h4>'), 'TEXT', '5.' => array('current' => '1', 'dataWrap' => '<h5{register:headerClass}>|</h5>')), 'CASE'), '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' => 'COA_INT', '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')), 'wrap' => '<article>|</article>'), 'COA', '10.' => array('< lib.stdheader', 'TEXT', '10.' => array('data' => 'field:crdate', 'date' => 'd.m.Y', 'wrap' => '<h4>|</h4>'), 'CONTENT', '15.' => array('wrap' => '|', 'table' => 'sys_category', 'select.' => array('pidInList' => '2', 'join' => 'sys_category_record_mm ON(sys_category_record_mm.uid_local=sys_category.uid)', 'where' => 'sys_category_record_mm.tablenames="tt_content"', 'andWhere.' => array('dataWrap' => 'sys_category_record_mm.uid_foreign = {field:uid}')), 'renderObj' => 'TEXT', 'renderObj.' => array('field' => 'title', 'wrap' => '<h5>|</h5>', 'typolink.' => array('parameter.' => array('data' => 'field:tx_hsvbase_pageid')))), 'stdWrap.' => array('wrap' => '<hgroup>|<div class="clear"></div></hgroup>')), 'FILES', '20.' => array('references.' => array('cObject' => 'CONTENT', 'cObject.' => array('table' => 'sys_file_reference', 'select.' => array('andWhere.' => array('data' => 'field:uid', 'dataWrap' => 'uid_foreign=|'), 'orderBy' => 'title DESC'), 'renderObj' => 'TEXT', 'renderObj.' => array('field' => 'uid', 'wrap' => '|,'))), 'collections.' => array('field' => 'file_collections'), 'folders.' => array('field' => 'select_key'), 'select.' => array('sorting.' => array('field' => 'size', 'direction' => 'DESC')), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:originalUid // file:current:uid'), 'width' => '150'), 'stdWrap.' => array('if.' => array('value' => '1', 'isGreaterThan.' => array('field' => 'layout')), 'typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'IMAGE', '15.' => array('file.' => array('import' => 'typo3/gfx/fileicons/', 'import.' => array('data' => 'file:current:extension', 'case' => 'lower', 'wrap' => '|.gif')), 'stdWrap.' => array('if.' => array('value' => '0', 'isGreaterThan.' => array('field' => 'layout'), 'isFalse.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'file:current:originalUid // file:current:uid'), 'width' => '150'), 'stdWrap.' => array('if.' => array('value' => '1', 'isGreaterThan.' => array(*DEEP NESTED ARRAY*)))))), 'typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'COA', '20.' => array('TEXT', '10.' => array('data' => 'file:current:title', 'htmlSpecialChars' => '1', 'required' => '1', 'replacement.' => array('5.' => array('search' => '/(\\d\\d\\d\\d)\\.(\\d\\d)\\.(\\d\\d)/', 'replace' => '\\3.\\2.\\1', 'useRegExp' => '1'), '10.' => array('search' => '_', 'replace.' => array('char' => '32')), '_20.' => array('search' => '/(.*)(\\..*)/', 'replace' => '\\1', 'useRegExp' => '1')), 'noTrimWrap' => '|<span class="downloadDate">|</span> <span class="downloadSpacer">&#124;</span> {file:current:description}|', 'noTrimWrap.' => array('insertData' => '1')), 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'TEXT', '40.' => array('if.' => array('isTrue.' => array('field' => 'filelink_size')), 'data' => 'file:current:size', 'wrap' => '<span class="csc-uploads-fileSize">|</span>', 'bytes' => '1', 'bytes.' => array('labels' => '{$styles.content.uploads.filesizeBytesLabels}')), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '<li>|</li>'))), 'stdWrap.' => array('editIcons' => 'tt_content: media, layout [table_bgColor|table_border|table_cellspacing|table_cellpadding], filelink_size', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.filelist')), 'prefixComment' => '2 | File list:', 'dataWrap' => '<ul class="downloadList">|</ul>'))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'newslist' => 'COA', 'newslist.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LIST', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))), 'stdWrap.' => array('wrap' => '<div class="contentContainer">|</div>')), 'results' => 'COA', 'results.' => array('< lib.stdheader', 'COA', '20.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '26', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LIST2', 'limit' => '100000000', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), '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'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), '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'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array(*DEEP NESTED ARRAY*), 'title.' => array(*DEEP NESTED ARRAY*), 'ATagParams.' => array(*DEEP NESTED ARRAY*), 'target.' => array(*DEEP NESTED ARRAY*), 'extTarget.' => array(*DEEP NESTED ARRAY*)))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array(*DEEP NESTED ARRAY*))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array(*DEEP NESTED ARRAY*)), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array(*DEEP NESTED ARRAY*), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array(*DEEP NESTED ARRAY*)), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '26', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid'))), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'if.' => array('isTrue.' => array('field' => 'shortcut'))))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array(*DEEP NESTED ARRAY*), 'title.' => array(*DEEP NESTED ARRAY*), 'ATagParams.' => array(*DEEP NESTED ARRAY*), 'target.' => array(*DEEP NESTED ARRAY*), 'extTarget.' => array(*DEEP NESTED ARRAY*)))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))))), 'newslatest' => 'COA', 'newslatest.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LATEST', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))), 'stdWrap.' => array('wrap' => '<div class="contentContainer">|</div>')), 'newsarticle' => 'COA', 'newsarticle.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'SINGLE', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"'))))), 'footerlogo' => 'COA', 'footerlogo.' => array('LOAD_REGISTER', '5.' => array('headerLink.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'header_link'))), 'FILES', '10.' => array('references.' => array('table' => 'tt_content', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'IMAGE', 'renderObj.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'maxH' => '100', 'maxW' => '100'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'file:current:link', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:headerLink'), 'if.' => array('isTrue.' => array('data' => 'register:headerLink'))))), 'extTarget' => '_blank')))), 'stdWrap.' => array('wrap' => '<span class="footerLogo">|</span>')), 'imagegallery' => '< lib.contentElement', 'imagegallery.' => array('templateName' => 'ImageGallery', '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')))), 'ticker' => 'COA', 'ticker.' => array('TEXT', '10.' => array('field' => 'bodytext', 'replacement.' => array('5.' => array('search' => '/<p[^>]*>/', 'replace' => '<li>', 'useRegExp' => '1'), '10.' => array('search' => '/<\\/p>/', 'replace' => '</li>', 'useRegExp' => '1')), 'parseFunc' => '< lib.parseFunc_RTE'), 'stdWrap.' => array('wrap' => '<article class="ticker"><ul>|</ul></article>'))), 'tt_content')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('mobileClass.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'frame_class'), 'default' => 'TEXT', 'custom-100' => 'TEXT', 'custom-101' => 'TEXT', 'custom-101.' => array('value' => 'notMobile'), 'custom-102' => 'TEXT', 'custom-102.' => array('value' => 'mobile'), 'custom-103' => 'TEXT', 'custom-103.' => array('value' => 'mobileFullWidth'), 'custom-104' => 'TEXT', 'custom-104.' => array('value' => 'mobileHalfWidth')))), 'CASE', '50.' => array('key.' => array('field' => 'layout'), 'TEXT', '100.' => array('value' => '<div class="contentElement {register:mobileClass} fullWidth">|</div>', 'insertData' => '1'), 'TEXT', '101.' => array('value' => '<div class="contentElement {register:mobileClass} halfWidth">|</div>', 'insertData' => '1'), 'TEXT', '102.' => array('value' => '<div class="contentElement {register:mobileClass} column twoCol">|</div>', 'insertData' => '1'), 'TEXT', '103.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol">|</div>', 'insertData' => '1'), 'TEXT', '105.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol right">|</div>', 'insertData' => '1'), 'TEXT', '104.' => array('value' => '<div class="contentElement {register:mobileClass} column oneCol rightWidget">|</div>', 'insertData' => '1'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="contentElement {register:mobileClass} fullWidth">|</div>', 'insertData' => '1')), 'if.' => array('equals.' => array('field' => 'colPos'), 'value' => '0')))), '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' => 'COA', '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'), 'eventmanager_calendar' => 'USER', 'eventmanager_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'EventManager', 'pluginName' => 'Calendar'), 'kadermanager_members' => 'USER', 'kadermanager_members.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'KaderManager', 'pluginName' => 'Members'), 'personmanager_persons' => 'USER', 'personmanager_persons.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PersonManager', 'pluginName' => 'Persons'), 'results_display' => 'USER', 'results_display.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Results', 'pluginName' => 'Display'), 'CASE', '9.' => array('key.' => array('field' => 'layout'), '< plugin.tt_news'), 'key.' => array('field' => 'list_type'), 'stdWrap.' => array('editIcons' => 'tt_content: list_type, layout, select_key, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.plugin')))), 'CASE', '10.' => array('setCurrent.' => array('field' => 'header', 'htmlSpecialChars' => '1', 'typolink.' => array('parameter.' => array('field' => 'header_link'), 'target' => '', 'target.' => array('override' => '{$styles.content.links.target}'))), 'key.' => array('field' => 'header_layout', 'ifEmpty' => '{$content.defaultHeaderType}', 'ifEmpty.' => array('override.' => array('data' => 'register: defaultHeaderType'))), 'TEXT', '1.' => array('current' => '1', 'dataWrap' => '<h1{register:headerClass}>|</h1>'), 'TEXT', '2.' => array('current' => '1', 'dataWrap' => '<h2 class="contentElementHeader">|</h2>'), 'TEXT', '3.' => array('current' => '1', 'dataWrap' => '<h3{register:headerClass}>|</h3>'), 'TEXT', '4.' => array('current' => '1', 'dataWrap' => '<h4{register:headerClass}>|</h4>'), 'TEXT', '5.' => array('current' => '1', 'dataWrap' => '<h5{register:headerClass}>|</h5>')), 'CASE'), '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' => 'COA_INT', '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')), 'wrap' => '<article>|</article>'), 'COA', '10.' => array('< lib.stdheader', 'TEXT', '10.' => array('data' => 'field:crdate', 'date' => 'd.m.Y', 'wrap' => '<h4>|</h4>'), 'CONTENT', '15.' => array('wrap' => '|', 'table' => 'sys_category', 'select.' => array('pidInList' => '2', 'join' => 'sys_category_record_mm ON(sys_category_record_mm.uid_local=sys_category.uid)', 'where' => 'sys_category_record_mm.tablenames="tt_content"', 'andWhere.' => array('dataWrap' => 'sys_category_record_mm.uid_foreign = {field:uid}')), 'renderObj' => 'TEXT', 'renderObj.' => array('field' => 'title', 'wrap' => '<h5>|</h5>', 'typolink.' => array('parameter.' => array('data' => 'field:tx_hsvbase_pageid')))), 'stdWrap.' => array('wrap' => '<hgroup>|<div class="clear"></div></hgroup>')), 'FILES', '20.' => array('references.' => array('cObject' => 'CONTENT', 'cObject.' => array('table' => 'sys_file_reference', 'select.' => array('andWhere.' => array('data' => 'field:uid', 'dataWrap' => 'uid_foreign=|'), 'orderBy' => 'title DESC'), 'renderObj' => 'TEXT', 'renderObj.' => array('field' => 'uid', 'wrap' => '|,'))), 'collections.' => array('field' => 'file_collections'), 'folders.' => array('field' => 'select_key'), 'select.' => array('sorting.' => array('field' => 'size', 'direction' => 'DESC')), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:originalUid // file:current:uid'), 'width' => '150'), 'stdWrap.' => array('if.' => array('value' => '1', 'isGreaterThan.' => array('field' => 'layout')), 'typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'IMAGE', '15.' => array('file.' => array('import' => 'typo3/gfx/fileicons/', 'import.' => array('data' => 'file:current:extension', 'case' => 'lower', 'wrap' => '|.gif')), 'stdWrap.' => array('if.' => array('value' => '0', 'isGreaterThan.' => array('field' => 'layout'), 'isFalse.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'file:current:originalUid // file:current:uid'), 'width' => '150'), 'stdWrap.' => array('if.' => array('value' => '1', 'isGreaterThan.' => array(*DEEP NESTED ARRAY*)))))), 'typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'COA', '20.' => array('TEXT', '10.' => array('data' => 'file:current:title', 'htmlSpecialChars' => '1', 'required' => '1', 'replacement.' => array('5.' => array('search' => '/(\\d\\d\\d\\d)\\.(\\d\\d)\\.(\\d\\d)/', 'replace' => '\\3.\\2.\\1', 'useRegExp' => '1'), '10.' => array('search' => '_', 'replace.' => array('char' => '32')), '_20.' => array('search' => '/(.*)(\\..*)/', 'replace' => '\\1', 'useRegExp' => '1')), 'noTrimWrap' => '|<span class="downloadDate">|</span> <span class="downloadSpacer">&#124;</span> {file:current:description}|', 'noTrimWrap.' => array('insertData' => '1')), 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'file:current:originalUid // file:current:uid', 'wrap' => 'file:|'), 'fileTarget' => '', 'fileTarget.' => array('override' => '{$styles.content.uploads.target}', 'override.' => array('override.' => array('field' => 'target'))), 'removePrependedNumbers' => '1'))), 'TEXT', '40.' => array('if.' => array('isTrue.' => array('field' => 'filelink_size')), 'data' => 'file:current:size', 'wrap' => '<span class="csc-uploads-fileSize">|</span>', 'bytes' => '1', 'bytes.' => array('labels' => '{$styles.content.uploads.filesizeBytesLabels}')), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '<li>|</li>'))), 'stdWrap.' => array('editIcons' => 'tt_content: media, layout [table_bgColor|table_border|table_cellspacing|table_cellpadding], filelink_size', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.filelist')), 'prefixComment' => '2 | File list:', 'dataWrap' => '<ul class="downloadList">|</ul>'))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'newslist' => 'COA', 'newslist.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LIST', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))), 'stdWrap.' => array('wrap' => '<div class="contentContainer">|</div>')), 'results' => 'COA', 'results.' => array('< lib.stdheader', 'COA', '20.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '26', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LIST2', 'limit' => '100000000', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), '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'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), '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'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array(*DEEP NESTED ARRAY*), 'title.' => array(*DEEP NESTED ARRAY*), 'ATagParams.' => array(*DEEP NESTED ARRAY*), 'target.' => array(*DEEP NESTED ARRAY*), 'extTarget.' => array(*DEEP NESTED ARRAY*)))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array(*DEEP NESTED ARRAY*))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array(*DEEP NESTED ARRAY*)), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array(*DEEP NESTED ARRAY*), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array(*DEEP NESTED ARRAY*)), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '26', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid'))), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'if.' => array('isTrue.' => array('field' => 'shortcut'))))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array(*DEEP NESTED ARRAY*), 'title.' => array(*DEEP NESTED ARRAY*), 'ATagParams.' => array(*DEEP NESTED ARRAY*), 'target.' => array(*DEEP NESTED ARRAY*), 'extTarget.' => array(*DEEP NESTED ARRAY*)))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))))), 'newslatest' => 'COA', 'newslatest.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'LATEST', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"')))), 'stdWrap.' => array('wrap' => '<div class="contentContainer">|</div>')), 'newsarticle' => 'COA', 'newsarticle.' => array('USER', '10.' => array('userFunc' => 'RG\\TtNews\\Plugin\\TtNews->main_news', 'enableConfigValidation' => '1', 'stdWrap.' => array('wrap' => ''), 'templateFile' => 'EXT:lsc_base/Resources/Private/Templates/News/Default.html', 'pid_list' => '16', 'recursive' => '2', 'dontUsePidList' => '0', 'excludeAlreadyDisplayedNews' => '1', 'singlePid' => '18', 'code' => 'SINGLE', 'limit' => '10', 'latestLimit' => '5', 'backPid' => '16', 'dontUseBackPid' => '1', 'enableOptionSplit' => '1', 'altLayoutsOptionSplit' => '', 'alternatingLayouts' => '', 'pageTypoLink.' => array('parameter.' => array('current' => '1')), 'allowCaching' => '1', 'ignoreEnableFields.' => array('starttime' => '0', 'endtime' => '0'), 'useMultiPageSingleView' => '0', 'maxWordsInSingleView' => '0', 'appendSViewPBtoContent' => '0', 'useParagraphAsPagebreak' => '0', 'displaySingle.' => array('age_stdWrap.' => array('age' => '1', 'wrap' => '|<br />'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'author_stdWrap.' => array('typolink.' => array('parameter.' => array('field' => 'author_email')), 'wrap' => '|<br />', 'required' => '1'), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'category_stdWrap.' => array('wrap' => '|<br />'), 'email_stdWrap.' => array('setContentToCurrent' => '1', 'typolink.' => array('parameter.' => array('current' => '1'))), 'subheader_stdWrap.' => array('wrap' => '|', 'trim' => '1', 'required' => '1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'br' => '1'), 'content_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1')), 'addInfo_stdWrap.' => array('wrap' => '<div class="news-single-additional-info"> | </div>'), 'links_stdWrap.' => array('wrap' => '<dl class="news-single-links">|</dl>'), 'linksHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'linksItem_stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;', 'wrap' => '<dd>|</dd>'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'nextPrevRecSortingField' => 'datetime', 'reversePrevNextOrder' => '0', 'showTitleAsPrevNextLink' => '1', 'prevLinkTitle_stdWrap.' => array('wrap' => ''), 'prevLinkLabel_stdWrap.' => array('wrap' => '&lt;&nbsp;|'), 'prevLink_stdWrap.' => array('wrap' => ''), 'nextLinkTitle_stdWrap.' => array('wrap' => ''), 'nextLinkLabel_stdWrap.' => array('wrap' => '|&nbsp;&gt;'), 'nextLink_stdWrap.' => array('wrap' => '<div style="float:right;">|</div>'), 'imageCount' => '0', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'imageMarkerOptionSplit' => '', 'image.' => array('file.' => array('maxW' => '240', 'maxH' => '180'), 'wrap' => '', 'imageLinkWrap' => '0', 'imageLinkWrap.' => array('enable' => '1', 'bodyTag' => '<body bgColor="#ffffff" style="margin:0;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600', 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '1', 'expand' => '0,0'))), 'caption_stdWrap.' => array('dataWrap' => '<figure class="slideCaption hidden">|</figure>'), 'author_stdWrap' => '|'), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '120', 'maxH' => '90'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))))), 'latestWithCatSelector' => '0', 'displayArchivedInLatest' => '0', 'usePiBasePagebrowser' => '1', 'pageBrowser.' => array('maxPages' => '5', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '0', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '0', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="pageBrowser">|</div>', 'showResultsWrap' => '|', 'browseLinksWrap' => '|', 'disabledLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue disabled"><a>|</a></span>', 'inactiveLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue">|</span>', 'activeLinkWrap' => '<span class="pageBrowserButton smallButton hairlineFrame goldFrame blue active">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>')), 'alwaysPrev' => '1'), 'singleViewPageBrowser.' => array('maxPages' => '10', 'showResultCount' => '0', 'showPBrowserText' => '0', 'dontLinkActivePage' => '1', 'showFirstLast' => '1', 'pagefloat' => 'center', 'showRange' => '0', 'hscText' => '1', 'showResultsNumbersWrap' => '|', 'browseBoxWrap' => '<div class="news-single-browse">|</div>', 'showResultsWrap' => '<div class="showResultsWrap">|</div>', 'browseLinksWrap' => '<div class="browseLinksWrap">|</div>', 'disabledLinkWrap' => '<span class="disabledLinkWrap">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<span class="activeLinkWrap">|</span>', 'activeLinkWrap.' => array('stdWrap.' => array('wrap' => '<span class="activeLinkWrap">|</span>'))), 'categoryMode' => '0', 'categorySelection' => '', 'useSubCategories' => '1', 'ignoreUseSubcategoriesForAndSelection' => '1', 'displaySubCategories' => '0', 'showRelatedNewsByCategory' => '0', 'useSPidFromCategory' => '0', 'useSPidFromCategoryRecusive' => '1', 'categoryDivider' => ',', 'categoryDivider_stdWrap.' => array('noTrimWrap' => '|| |'), 'catTextMode' => '1', 'catImageMode' => '1', 'catImageMaxWidth' => '25', 'catImageMaxHeight' => '25', 'maxCatImages' => '10', 'maxCatTexts' => '10', 'catOrderBy' => '', 'catSelectorTargetPid' => '', 'catmenuWithArchiveParams' => '0', 'displayCatMenu.' => array('catPidList' => '', 'recursive' => '', 'mode' => 'ajaxtree', 'includePrototypeJS' => '1', 'showNewsCountForCategories' => '0', 'expandable' => '1', 'expandAll' => '0', 'expandFirst' => '1', 'catmenu_stdWrap.' => array('wrap' => '<div class="news-catmenu">|</div>'), 'catmenuHeader_stdWrap.' => array('wrap' => '<p class="news-catmenu-header">|</p>'), 'hideCatmenuHeader' => '0', 'catmenuIconMode' => '0', 'catmenuIconPath' => '', 'catmenuIconFile' => 'EXT:tt_news/res/arrow.gif', 'catmenuIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuNoRootIcon' => '0', 'insertDescrAsTitle' => '1', 'catmenuRootIconFile' => '', 'catmenuRootIconFile.' => array('width' => '18', 'height' => '16'), 'catmenuItem_ACT_stdWrap.' => array('wrap' => '<div class="news-catmenu-ACT">|</div>'), 'catmenuItem_NO_stdWrap.' => array('wrap' => '<div class="news-catmenu-NO">|</div>'), 'catmenuLevel1_stdWrap.' => array('wrap' => '<div class="level1">|</div>'), 'catmenuLevel2_stdWrap.' => array('wrap' => '<div class="level2">|</div>'), 'catmenuLevel3_stdWrap.' => array('wrap' => '<div class="level3">|</div>'), 'catmenuLevel4_stdWrap.' => array('wrap' => '<div class="level4">|</div>')), 'catRootline.' => array('showCatRootline' => '0', 'catRootline_stdWrap.' => array('wrap' => '<div class="news-catRootline">|</div>'), 'linkTitles' => '1', 'title_stdWrap.' => array('wrap' => ''), 'divider' => '&nbsp;&gt;&nbsp;'), 'archiveMode' => 'year', 'archive' => '0', 'emptyArchListAtStart' => '0', 'useHRDates' => '1', 'useHRDatesSingle' => '1', 'useHRDatesSingleWithoutDay' => '0', 'archiveTypoLink.' => array('parameter' => '0'), 'datetimeDaysToArchive' => '0', 'enableArchiveDate' => '0', 'amenuStart' => '-10 years', 'amenuEnd' => '10 years', 'reverseAMenu' => '1', 'archiveMenuNoEmpty' => '1', 'redirectNoTranslToList' => '0', 'ignoreNewsWithoutDatetimeInAmenu' => '1', 'disableCategoriesInAmenuLinks' => '0', 'amenuWithCatSelector' => '1', 'showYearHeadersInAmenu' => '1', 'archiveYear_stdWrap.' => array('wrap' => '<li class="news-amenu-item-year">|</li>'), 'archiveActiveMarkerContent' => 'class="amenu-act"', 'newsFiles_stdWrap.' => array('wrap' => '<dl class="news-single-files">|</dl>'), 'newsFilesHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'newsFiles.' => array('path' => 'uploads/media/', 'icon' => '1', 'size' => '1', 'size.' => array('bytes' => '1'), 'jumpurl' => '0', 'stdWrap.' => array('wrap' => '<dd>|</dd>')), 'useBidirectionalRelations' => '1', 'usePagesRelations' => '1', 'related_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'tmp.' => array('IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'getRelatedCObject' => 'COA', 'getRelatedCObject.' => array('groupBy' => '', 'orderBy' => 'datetime desc', 'CASE', '10.' => array('key.' => array('field' => 'type'), 'default' => 'COA', 'default.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/ext_icon.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter' => '18', 'additionalParams.' => array('data' => 'register:newsAddParams'), 'useCacheHash' => '1')), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '1.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_article.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'page'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')), 'COA', '2.' => array('wrap' => '<dd> | </dd>', 'IMAGE', '5.' => array('file' => 'EXT:tt_news/res/tt_news_exturl.gif', 'file.' => array('width' => '18', 'height' => '16'), 'wrap' => '| &nbsp;'), 'TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('field' => 'ext_url'))), 'TEXT', '20.' => array('field' => 'datetime', 'strftime' => '%d.%m.%Y %H:%M', 'wrap' => '&nbsp;-&nbsp; |')))), 'displayRelated.' => array('noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('age_stdWrap.' => array('age' => '1'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'subheader_stdWrap.' => array('stripHtml' => '1', 'crop' => '100 | ... | 1', 'ifEmpty.' => array('field' => 'bodytext'), 'outerWrap' => '<p>|</p>'), 'imageCount' => '1', 'imgAltTextField' => 'imagecaption', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-latest-category"> | </div>'), 'categoryItem_stdWrap.' => array('wrap' => ''), 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'latestImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '60', 'maxH' => '40'), 'imageLinkWrap' => '1', 'stdWrap.' => array('spaceAfter' => '0'))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => ''))), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => '', 'pi_list_browseresults_next' => '&raquo;', 'pi_list_browseresults_first' => '<img id="firstNewsPageLink"></img>', 'pi_list_browseresults_last' => '<img id="lastNewsPageLink"></img>', 'pi_list_browseresults_prev' => '&laquo;', 'textNewsAge' => '', 'preAuthor' => '', 'pi_list_browseresults_page' => ''), 'default.' => array('textNewsAge' => ''), 'en.' => array('textNewsAge' => ''), 'fr.' => array('textNewsAge' => '')), 'compatVersion' => '3.0.0', 'relatedByCategory_stdWrap.' => array('wrap' => '<dl class="news-single-related">|</dl>'), 'relatedByCategoryHeader_stdWrap.' => array('wrap' => '<dt>|</dt>'), 'wrap2.' => array('wrap' => '<dd>|</dd>'), 'relNewsByCategory.' => array('code' => 'list', 'categoryMode' => '1', 'noPageBrowser' => '1', 'limit' => '15', 'noNewsToListMsg_stdWrap.' => array('wrap' => ''), 'displayList.' => array('time_stdWrap.' => array('strftime' => '%H:%M'), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'title_stdWrap.' => array('crop' => '55|...')), '_LOCAL_LANG.' => array('de.' => array('noNewsToListMsg' => ''), 'en.' => array('noNewsToListMsg' => '')), 'altMainMarkers.' => array('TEMPLATE_LIST' => 'TEMPLATE_CAT_RELATED', 'TEMPLATE_LIST.' => array('wrap' => '### | ###'))), 'searchPid' => '', 'emptySearchAtStart' => '1', 'substitutePagetitle' => '1', 'noNewsToListMsg_stdWrap.' => array('wrap' => '|'), 'archiveEmptyMsg_stdWrap.' => array('wrap' => ''), 'searchEmptyMsg_stdWrap.' => array('wrap' => ''), 'noNewsIdMsg_stdWrap.' => array('wrap' => ''), 'showLangLabels' => '0', 'showFlags' => '0', 'defLangLabel' => 'English', 'defLangImage' => 'uk.gif', 'flagPath' => 'media/flags/flag_', 'flagImage.' => array('file.' => array('maxW' => '16')), 'listOrderBy' => 'tx_lscbase_keepontop DESC, datetime DESC', 'archiveTitleCObject' => 'COA', 'archiveTitleCObject.' => array('TEXT', '10.' => array('field' => 'start', 'strftime' => '%Y')), 'displayLatest.' => array('age_stdWrap.' => array('age' => '1'), 'textNewsAge_stdWrap.' => array('wrap' => ''), 'date_stdWrap.' => array('strftime' => '%d.%m.%Y'), 'time_stdWrap.' => array('strftime' => '%H:%M'), 'caption_stdWrap.' => array('if.' => array('directReturn' => '0')), 'title_stdWrap.' => array('wrap' => '', 'HTMLparser' => '1', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'br' => '1'), 'subheader_stdWrap.' => array('br' => '1'), 'author_stdWrap.' => array('wrap' => ''), 'preAuthor_stdWrap.' => array('noTrimWrap' => '|| |'), 'imageCount' => '1', 'imageWrapIfAny' => '', 'category_stdWrap.' => array('wrap' => '<div class="news-list-category"> | </div>'), 'imgAltTextField' => 'imagecaption', 'linkTitleField' => 'title', 'linkTitleField.' => array('wrap' => ''), 'linkAltField' => 'short', 'linkAltField.' => array('wrap' => ''), 'listImageMode' => 'resize2max', 'image.' => array('file.' => array('maxW' => '1160', 'maxH' => '90', 'width' => '1160c', 'height' => '480c'), 'imageLinkWrap' => '1', 'noImage_stdWrap.' => array('wrap' => '')), 'categoryTitles_stdWrap.' => array('wrap' => '|'), 'content_stdWrap.' => array('HTMLparser' => '0', 'HTMLparser.' => array('htmlSpecialChars' => '2'), 'innerWrap.' => array('insertData' => '1'), 'innerWrap' => '|', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array(*DEEP NESTED ARRAY*), 'tags.' => array(*DEEP NESTED ARRAY*), '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(*DEEP NESTED ARRAY*), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array(*DEEP NESTED ARRAY*), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array(*DEEP NESTED ARRAY*)), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'cropHTML' => '450 | &hellip; | 1', 'stripHtml' => '1', 'outerWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '5.' => array('newsYear.' => array('field' => 'datetime', 'strftime' => '%Y'), 'newsMonth.' => array('field' => 'datetime', 'strftime' => '%m'), 'newsDay.' => array('field' => 'datetime', 'strftime' => '%d')), 'TEXT', '10.' => array('value' => '|'), 'TEXT', '20.' => array('value' => '&nbsp[mehr&nbsp;lesen]', 'typolink.' => array('parameter' => '18', 'additionalParams' => '&tx_ttnews[year]={register:newsYear}&tx_ttnews[month]={register:newsMonth}&tx_ttnews[day]={register:newsDay}&tx_ttnews[tt_news]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'wrap' => '<span class="newsMoreLink"><strong>|</strong></span>'))))), 'limit' => '5'), 'singleMaxW' => '1160', 'latestWithPagebrowser' => '1', 'displayXML.' => array('title_stdWrap.' => array('htmlSpecialChars' => '1', 'htmlSpecialChars.' => array('preserveEntities' => '1')), 'content_stdWrap.' => array('stripHtml' => '0', 'htmlSpecialChars' => '0', 'htmlSpecialChars.' => array('preserveEntities' => '1'), 'crop' => '450 | &hellip; | 1', 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '0'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array(*DEEP NESTED ARRAY*), 'mailto.' => array(*DEEP NESTED ARRAY*)), 'tags.' => array('a' => 'TEXT', 'a.' => array(*DEEP NESTED ARRAY*)), '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(*DEEP NESTED ARRAY*)), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array(*DEEP NESTED ARRAY*)), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array(*DEEP NESTED ARRAY*))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')))), 'xmlLastBuildDate' => '1', 'showImages' => '1', 'image.' => array('file.' => array('maxW' => '266')), 'caption_stdWrap.' => array('wrap' => '<imagecaption>|</imagecaption>')), 'genericmarkers.' => array('data' => 'uid,author,catMenu,latest,archive,catLink,category_uid,datetime,image,news_files,content', 'fields' => 'uid', 'uid' => 'TEXT', 'uid.' => array('data' => 'field:uid', 'wrap' => '|'), 'fileLink' => 'FILES', 'fileLink.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'news_files'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'catLinks' => 'CONTENT', 'catLinks.' => array('table' => 'tt_news_cat', 'select.' => array('selectFields' => 'tt_news_cat.title, tt_news_cat.description, tt_news_cat.uid, tt_news_cat.shortcut', 'pidInList' => '16', 'join' => 'tt_news_cat_mm ON (tt_news_cat.uid = tt_news_cat_mm.uid_foreign) INNER JOIN tt_news ON (tt_news.uid = tt_news_cat_mm.uid_local)', 'where.' => array('data' => 'field:uid', 'dataWrap' => 'tt_news.uid = |'), 'groupBy' => 'tt_news_cat.uid', 'max' => '1'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => '&tx_ttnews[cat]={field:uid}', 'additionalParams.' => array('insertData' => '1')), 'if.' => array('isFalse.' => array('field' => 'shortcut'))), 'TEXT', '20.' => array('field' => 'title', 'typolink' => 'TEXT', 'typolink.' => array('parameter.' => array('data' => 'field:shortcut')), 'if.' => array('isTrue.' => array('field' => 'shortcut'))), 'wrap' => '<h5 class="categorySpacer">&amp;</h5><h5 class="category">|</h5>'), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'keepOnTopClass' => 'TEXT', 'keepOnTopClass.' => array('value' => 'news--keep-on-top', 'if.' => array('isTrue.' => array('field' => 'tx_lscbase_keepontop'))), 'FAL_IMAGES' => 'FILES', 'FAL_IMAGES.' => array('begin' => '0', 'maxItems' => '1', 'references.' => array('table' => 'tt_news', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMAGE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'width' => '266c', 'maxW' => '266', 'maxH' => '400'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('directImageLink' => '1', 'enable' => '1', 'linkParams.' => array('ATagParams' => 'data-lightbox="news_{field:uid}"', 'ATagParams.' => array('insertData' => '1')))), 'TEXT', '20.' => array('data' => 'file:current:description', 'wrap' => '<figcaption>|</figcaption>'), 'stdWrap.' => array('wrap' => '<figure>|</figure>')), 'stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'uid')))), 'teaser' => 'TEXT', 'teaser.' => array('field' => 'bodytext', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*)), 'extTarget.' => array('ifEmpty.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'cropHTML' => '500 | &hellip; | 1')), 'archiveLink' => 'TEXT', 'archiveLink.' => array('value' => 'Meldungsarchiv', 'typolink.' => array('parameter' => '26', 'ATagParams' => 'class="oneCol column right button goldFrame thickFrame blue"'))))), 'footerlogo' => 'COA', 'footerlogo.' => array('LOAD_REGISTER', '5.' => array('headerLink.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'header_link'))), 'FILES', '10.' => array('references.' => array('table' => 'tt_content', 'uid.' => array('field' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'IMAGE', 'renderObj.' => array('file.' => array('import.' => array('data' => 'file:current:publicUrl'), 'maxH' => '100', 'maxW' => '100'), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array('enable' => '1', 'typolink.' => array('parameter.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'file:current:link', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:headerLink'), 'if.' => array('isTrue.' => array('data' => 'register:headerLink'))))), 'extTarget' => '_blank')))), 'stdWrap.' => array('wrap' => '<span class="footerLogo">|</span>')), 'imagegallery' => '< lib.contentElement', 'imagegallery.' => array('templateName' => 'ImageGallery', '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')))), 'ticker' => 'COA', 'ticker.' => array('TEXT', '10.' => array('field' => 'bodytext', 'replacement.' => array('5.' => array('search' => '/<p[^>]*>/', 'replace' => '<li>', 'useRegExp' => '1'), '10.' => array('search' => '/<\\/p>/', 'replace' => '</li>', 'useRegExp' => '1')), 'parseFunc' => '< lib.parseFunc_RTE'), 'stdWrap.' => array('wrap' => '<article class="ticker"><ul>|</ul></article>'))), '')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 95
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')), 'variables.content')
in /html/typo3/typo3_src-10.4.37/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('file' => 'EXT:lsc_base/Resources/Private/Templates/Page/Default.html', 'templateRootPath' => 'EXT:lsc_base/Resources/Private/Templates/', 'partialRootPath' => 'EXT:lsc_base/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:lsc_base/Resources/Private/Layouts/', 'variables.' => array('content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 102
        $this->setLayoutRootPath($conf);
        $this->setPartialRootPath($conf);
        $this->setExtbaseVariables($conf);
        $this->assignSettings($conf);
        $variables = $this->getContentObjectVariables($conf);
        $variables = $this->contentDataProcessor->process($this->cObj, $conf, $variables);

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

at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('file' => 'EXT:lsc_base/Resources/Private/Templates/Page/Default.html', 'templateRootPath' => 'EXT:lsc_base/Resources/Private/Templates/', 'partialRootPath' => 'EXT:lsc_base/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:lsc_base/Resources/Private/Layouts/', 'variables.' => array('content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('file' => 'EXT:lsc_base/Resources/Private/Templates/Page/Default.html', 'templateRootPath' => 'EXT:lsc_base/Resources/Private/Templates/', 'partialRootPath' => 'EXT:lsc_base/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:lsc_base/Resources/Private/Layouts/', 'variables.' => array('content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('file' => 'EXT:lsc_base/Resources/Private/Templates/Page/Default.html', 'templateRootPath' => 'EXT:lsc_base/Resources/Private/Templates/', 'partialRootPath' => 'EXT:lsc_base/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:lsc_base/Resources/Private/Layouts/', 'variables.' => array('content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')))), '10')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('meta.' => array('title' => 'LSC –Bad Nauheim e.V.', 'language' => 'de', 'publisher' => 'four aces Werbung Design Text Marketing - Werbeagentur - Parkstrasse 16 - 61231 Bad Nauheim - www.fouraces.de', 'description' => 'Der LSC ist ein Leichtathletik und Eiskunstlauf Sportverein in Bad Nauheim', 'keywords' => 'lsc, leichtathletik, eiskunstlauf, leichtathletik bad nauheim, eiskunstlauf bad nauheim, leichtathletik hessen, eiskunstlauf hessen, waldstadion bad nauheim, colognel-knight-stadion, lsc bad nauheim', 'page-topic' => 'Sport, Freizeit, Verein, Leichtathletik, Eiskunstlauf', 'rating' => 'general', 'robots' => 'index,follow', 'viewport' => 'width=device-width, initial-scale=1, user-scalable=no', 'google-site-verification' => 'lsPIA0uXSA9RlzRKpeGxLh6mtVSp1ttkrILSLBo5YXU'), 'config.' => array('index_enable' => '1', 'contentObjectExceptionHandler' => '0'), 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('TEXT', '10.' => array('value' => '<body id="rootPid_{leveluid:1}">', 'insertData' => '1', 'override' => '<body id="rootPid_{leveluid:1}" class="hasSubPages">', 'override.' => array('insertData' => '1', 'if.' => array('isTrue.' => array('numRows.' => array('table' => 'pages', 'select.' => array('pidInList.' => array('data' => 'leveluid:2'), 'where' => 'nav_hide != 1')))))), 'TEXT', '20.' => array('value' => ' <!--[if lt IE 7]> <p class="chromeframe"> You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> or <a href="https://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience. </p> <![endif]-->')), 'includeJS.' => array('JSFile1' => 'EXT:lsc_base/Resources/Public/JavaScript/jquery.2.1.3.min.js', 'JSFile10' => 'EXT:lsc_base/Resources/Public/JavaScript/css3-mediaqueries.js', 'JSFile20' => 'EXT:lsc_base/Resources/Public/JavaScript/modernizr-custom.js', 'JSFile30' => 'EXT:lsc_base/Resources/Public/JavaScript/jquery.browser.js', 'JSFile35' => 'EXT:lsc_base/Resources/Public/JavaScript/jquery.easing.1.3.js', 'JSFile40' => 'EXT:lsc_base/Resources/Public/JavaScript/jquery.form.js', 'JSFile50' => 'EXT:lsc_base/Resources/Public/JavaScript/jquery.mCustomScrollbar.js', 'JSFile60' => 'EXT:lsc_base/Resources/Public/JavaScript/jquery.mousewheel.min.js', 'JSFile70' => 'EXT:lsc_base/Resources/Public/JavaScript/jquery.mrCustomSelect.js', 'JSFile75' => 'EXT:lsc_base/Resources/Public/JavaScript/jquery.mrAccordion.js', 'JSFile80' => 'EXT:lsc_base/Resources/Public/JavaScript/jquery.ui.1.10.1.custom.min.js', 'JSFile90' => 'EXT:lsc_base/Resources/Public/JavaScript/lightbox-2.6.min.js', 'JSFile100' => 'EXT:lsc_base/Resources/Public/JavaScript/diaporama.min.js', 'JSFile105' => 'EXT:lsc_base/Resources/Public/JavaScript/slideshow.js', 'JSFile110' => 'EXT:lsc_base/Resources/Public/JavaScript/forms.js', 'JSFile120' => 'EXT:lsc_base/Resources/Public/JavaScript/main.js'), 'includeCSS.' => array('file10' => 'EXT:lsc_base/Resources/Public/Css/fonts.css', 'file10.' => array('title' => 'mainStyles', 'media' => 'all'), 'file20' => 'EXT:lsc_base/Resources/Public/Css/base.css', 'file20.' => array('title' => 'mainStyles', 'media' => 'all'), 'file25' => 'EXT:lsc_base/Resources/Public/Css/navigation.css', 'file25.' => array('title' => 'mainStyles', 'media' => 'all'), 'file30' => 'EXT:lsc_base/Resources/Public/Css/shadows.css', 'file30.' => array('title' => 'mainStyles', 'media' => 'all'), 'file40' => 'EXT:lsc_base/Resources/Public/Css/lightbox.css', 'file40.' => array('title' => 'mainStyles', 'media' => 'all'), 'file50' => 'EXT:lsc_base/Resources/Public/Css/forms.css', 'file50.' => array('title' => 'mainStyles', 'media' => 'all'), 'file60' => 'EXT:lsc_base/Resources/Public/Css/jquery.mCustomScrollbar.css', 'file60.' => array('title' => 'mainStyles', 'media' => 'all'), 'file70' => 'EXT:lsc_base/Resources/Public/Css/responsive.css', 'file70.' => array('title' => 'mainStyles', 'media' => 'all')), 'headerData.' => array('TEXT', '10.' => array('value' => '<title>LSC Bad Nauheim e.V.</title>')), 'FLUIDTEMPLATE', '10.' => array('file' => 'EXT:lsc_base/Resources/Private/Templates/Page/Default.html', 'templateRootPath' => 'EXT:lsc_base/Resources/Private/Templates/', 'partialRootPath' => 'EXT:lsc_base/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:lsc_base/Resources/Private/Layouts/', 'variables.' => array('content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0'))))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 232
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 198
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 134
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

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

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

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

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/tt_news/Classes/Middleware/AjaxResolver.php line 48
    {
        $eID = $request->getParsedBody()['ttnewsID'] ?? $request->getQueryParams()['ttnewsID'] ?? null;

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

        $parsedBody = $request->getQueryParams();

at RG\TtNews\Middleware\AjaxResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Register the backend user as aspect
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

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

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f8508e1241b))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

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