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) #1389697515 RuntimeException

It looks like the character set utf8 is not used for this connection even though it is configured as connection charset. This TYPO3 installation is using the $GLOBALS['TYPO3_CONF_VARS']['SYS']['setDBinit'] property with the following value: "". Please make sure that this command does not overwrite the configured charset. Please note that for the TYPO3 database everything other than utf8 is unsupported since version 4.7.

in /home/maedchen/public_html/get-together.ch/typo3conf/ext/typo3db_legacy/Classes/Database/DatabaseConnection.php line 1775
            }
        }

        if (!$hasValidCharset) {
            throw new \RuntimeException(
                'It looks like the character set ' . $this->connectionCharset . ' is not used for this connection even though it is configured as connection charset. ' .
                'This TYPO3 installation is using the $GLOBALS[\'TYPO3_CONF_VARS\'][\'SYS\'][\'setDBinit\'] property with the following value: "' .
                $GLOBALS['TYPO3_CONF_VARS']['SYS']['setDBinit'] . '". Please make sure that this command does not overwrite the configured charset. ' .
                'Please note that for the TYPO3 database everything other than utf8 is unsupported since version 4.7.',
at TYPO3\CMS\Typo3DbLegacy\Database\DatabaseConnection->checkConnectionCharset()
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/typo3db_legacy/Classes/Database/DatabaseConnection.php line 1332
                        'Could not initialize DB connection with query "' . $command . '": ' . $this->sql_error()
                    );
                }
            }
            $this->checkConnectionCharset();
        } else {
            // @todo This should raise an exception. Would be useful especially to work during installation.
            $error_msg = $this->link->connect_error;
            $this->link = null;
at TYPO3\CMS\Typo3DbLegacy\Database\DatabaseConnection->sql_pconnect()
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/typo3db_legacy/Classes/Database/DatabaseConnection.php line 1658
                1270853882
            );
        }

        if ($this->sql_pconnect()) {
            if (!$this->sql_select_db()) {
                throw new \RuntimeException(
                    'TYPO3 Fatal Error: Cannot connect to the current database, "' . $this->databaseName . '"!',
                    1270853883
at TYPO3\CMS\Typo3DbLegacy\Database\DatabaseConnection->connectDB()
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/typo3db_legacy/Classes/Database/DatabaseConnection.php line 497
    protected function query($query)
    {
        $this->logDeprecation();
        if (!$this->isConnected) {
            $this->connectDB();
        }
        return $this->link->query($query);
    }

at TYPO3\CMS\Typo3DbLegacy\Database\DatabaseConnection->query('SELECT tx_cal_calendar_user_group_mm.uid_local FROM tx_cal_calendar_user_group_mm LEFT JOIN tx_cal_calendar ON tx_cal_calendar.uid=tx_cal_calendar_user_group_mm.uid_local WHERE 1=1 AND (`tx_cal_calendar`.`deleted` = 0) AND (`tx_cal_calendar`.`t3ver_state` <= 0) AND (`tx_cal_calendar`.`pid` <> -1) AND (`tx_cal_calendar`.`hidden` = 0) AND (`tx_cal_calendar`.`starttime` <= 1711660800) AND ((`tx_cal_calendar`.`endtime` = 0) OR (`tx_cal_calendar`.`endtime` > 1711660800)) ORDER BY title')
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/typo3db_legacy/Classes/Database/DatabaseConnection.php line 325
    public function exec_SELECTquery($select_fields, $from_table, $where_clause, $groupBy = '', $orderBy = '', $limit = '')
    {
        $this->logDeprecation();
        $query = $this->SELECTquery($select_fields, $from_table, $where_clause, $groupBy, $orderBy, $limit);
        $res = $this->query($query);
        if ($this->debugOutput) {
            $this->debug('exec_SELECTquery');
        }
        if ($this->explainOutput) {
at TYPO3\CMS\Typo3DbLegacy\Database\DatabaseConnection->exec_SELECTquery('tx_cal_calendar_user_group_mm.uid_local', 'tx_cal_calendar_user_group_mm LEFT JOIN tx_cal_calendar ON tx_cal_calendar.uid=tx_cal_calendar_user_group_mm.uid_local', '1=1 AND (`tx_cal_calendar`.`deleted` = 0) AND (`tx_cal_calendar`.`t3ver_state` <= 0) AND (`tx_cal_calendar`.`pid` <> -1) AND (`tx_cal_calendar`.`hidden` = 0) AND (`tx_cal_calendar`.`starttime` <= 1711660800) AND ((`tx_cal_calendar`.`endtime` = 0) OR (`tx_cal_calendar`.`endtime` > 1711660800))', '', 'title')
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/cal/Classes/Service/CalendarService.php line 459
        }

        $orderBy = Functions::getOrderBy('tx_cal_calendar');
        $result = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
            'tx_cal_calendar_user_group_mm.uid_local',
            'tx_cal_calendar_user_group_mm LEFT JOIN tx_cal_calendar ON tx_cal_calendar.uid=tx_cal_calendar_user_group_mm.uid_local',
            '1=1 ' . $this->cObj->enableFields('tx_cal_calendar'),
            '',
            $orderBy
at TYPO3\CMS\Cal\Service\CalendarService->getIdsFromTable('', '30,31,18', true)
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/cal/Classes/Service/CalendarService.php line 380
        }

        $calendarSearchString = '';

        $idArray = $this->getIdsFromTable($linkIds, $pidList, $includePublic);

        $ids = array_keys($this->getCalendarOwner());

        if (is_array($ids) && !empty($ids)) {
at TYPO3\CMS\Cal\Service\CalendarService->getCalendarSearchString('30,31,18', true, '')
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/cal/Classes/Service/SysCategoryService.php line 331
        $calendarService = &$this->modelObj->getServiceObjByKey('cal_calendar_model', 'calendar', 'tx_cal_calendar');
        $calendarSearchString = $calendarService->getCalendarSearchString(
            $pidList,
            $showPublicCategories,
            $this->conf['calendar'] ? $this->conf['calendar'] : ''
        );
        // Select all categories for the given pids
        $select = 'sys_category.*,tx_cal_calendar.title AS calendar_title,tx_cal_calendar.uid AS calendar_uid';
        $table = 'sys_category LEFT JOIN tx_cal_calendar ON sys_category.calendar_id=tx_cal_calendar.uid';
at TYPO3\CMS\Cal\Service\SysCategoryService->getCategoryArray('30,31,18', array(), true)
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/cal/Classes/Service/SysCategoryService.php line 61
     * @return array array of array (array of $rows)
     */
    public function findAll($pidList, &$categoryArrayToBeFilled)
    {
        $this->getCategoryArray($pidList, $categoryArrayToBeFilled, true);
    }

    /**
     * @param $uid
at TYPO3\CMS\Cal\Service\SysCategoryService->findAll('30,31,18', array())
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/cal/Classes/Controller/ModelController.php line 750
            $serviceChain = '';

            /* Iterate over all classes providing the cal_model service */
            while (is_object($service = &GeneralUtility::makeInstanceService($serviceName, 'category', $serviceChain))) {
                $service->findAll($pidList, $categoryArrayToBeFilled);
                $categories [$service->getServiceKey()] = $categoryArrayToBeFilled;
                $categoryArrayToBeFilled = [];
                $serviceChain .= ',' . $service->getServiceKey();
            }
at TYPO3\CMS\Cal\Controller\ModelController->findAllCategories('cal_category_model', '', '30,31,18')
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/cal/Classes/Controller/Controller.php line 592
        $modelObj = &Registry::Registry('basic', 'modelcontroller');
        $rightsObj = &Registry::Registry('basic', 'rightscontroller');

        // et all categories
        $categoryArray = $modelObj->findAllCategories($this->confArr ['categoryService'], '', $this->conf ['pidList']);

        foreach ((array)$categoryArray [$this->confArr ['categoryService']] [0] [0] as $category) {
            $row = $category->row;
            $allCategoryByParentId [$row ['parent_category']] [] = $row;
at TYPO3\CMS\Cal\Controller\Controller->checkCalendarAndCategory()
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/cal/Classes/Controller/Controller.php line 493

        $viewObj = &Registry::Registry('basic', 'viewcontroller');
        $viewObj = GeneralUtility::makeInstance(ViewController::class);

        $this->checkCalendarAndCategory();

        $this->conf ['view'] = $rightsObj->checkView($this->conf ['view']);

        $this->pointerName = $this->conf ['view.'] ['list.'] ['pageBrowser.'] ['pointer'] ? $this->conf ['view.'] ['list.'] ['pageBrowser.'] ['pointer'] : $this->pointerName;
at TYPO3\CMS\Cal\Controller\Controller->initConfigs()
in /home/maedchen/public_html/get-together.ch/typo3conf/ext/cal/Classes/Controller/Controller.php line 174
                $hookObj->initCal($this);
            }
        }

        $return = $this->initConfigs();
        if (!$this->error) {
            $return .= $this->getContent();
        }

at TYPO3\CMS\Cal\Controller\Controller->main('', array('userFunc' => 'TYPO3\\CMS\\Cal\\Controller\\Controller->main', 'pidList' => '30,31,18', 'sessionPiVars' => 'page_id', 'calendarName' => 'My Calendar', 'allowSubscribe' => -1, 'subscribeFeUser' => -1, 'subscribeWithCaptcha' => '0', 'additionalWrapperClasses' => '', 'noWrapInBaseClass' => '0', 'dateConfig.' => array('dayPosition' => '2', 'monthPosition' => '1', 'yearPosition' => '0', 'splitSymbol' => '-', 'monthAbbreviationLength' => '3', 'weekdayAbbreviationLength' => '3'), 'dateParserConf.' => array('USmode' => '0'), 'date_stdWrap.' => array(), 'showRecordsWithoutDefaultTranslation' => '1', 'view.' => array('allowedViews' => array('list'), 'customViews' => '', 'noViewFoundHelpText' => 'Controller function not found:', 'category' => '', 'calendar' => '2', 'imagePath' => 'EXT:cal/Resources/Private/Templates/v1/img', 'javascriptPath' => 'EXT:cal/Resources/Private/Templates/v1/js', 'weekStartDay' => 'Monday', 'dayLinkTarget' => 'day', 'weekLinkTarget' => 'week', 'monthLinkTarget' => 'month', 'yearLinkTarget' => 'year', 'listLinkTarget' => 'list', 'locationLinkTarget' => 'location', 'organizerLinkTarget' => 'organizer', 'startLinkRange' => '-5 month', 'endLinkRange' => '+5 month', 'required' => '<span class="cal_required">*</span>', 'defaultLinkSetup' => 'TEXT', 'defaultLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1')), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'defaultViewLinkSetup' => 'TEXT', 'defaultViewLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'view', 'wrap' => '%%%|_VIEW%%%', 'case' => 'upper', 'required' => '1')))), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'backLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'showEditableEventsOnly' => '0', 'event.' => array('eventViewPid' => '22', 'createEventViewPid' => '', 'editEventViewPid' => '', 'deleteEventViewPid' => '', 'eventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/event.tmpl', 'eventModelTemplate' => 'fileadmin/templates/cal_event_model.tmpl', 'subscriptionManagerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/subscription_manager.tmpl', 'substitutePageTitle' => '1', 'isPreview' => '0', 'categoryLink_stdWrap.' => array('wrap' => ''), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div><br />|</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>|</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'notify.' => array('subscriptionViewPid' => '', 'confirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyConfirm.tmpl', 'confirmTitle' => 'Please confirm the event monitoring on www.abc.com', 'unsubscribeConfirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyUnsubscribeConfirm.tmpl', 'unsubscribeConfirmTitle' => 'Please confirm the event monitoring stop on www.abc.com', 'all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'remind' => '1', 'remind.' => array('time' => '30', 'all.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/remind.tmpl', 'emailTitle' => 'Reminder for event: ###TITLE###'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'meeting.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/invite.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/inviteOnChange.tmpl', 'statusViewPid' => '', 'managerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/meetingManager.tmpl', 'lookingAhead' => '300000;'), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'title.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'notification.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'todo.' => array('todoInlineModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_inline_model.tmpl', 'todoSeparateModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_separate_model.tmpl', 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'location.' => array('locationViewPid' => '', 'createLocationViewPid' => '', 'editLocationViewPid' => '', 'deleteLocationViewPid' => '', 'locationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location.tmpl', 'locationModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location_model.tmpl', 'locationModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/location_partner_model.tmpl', 'locationModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/location_address_model.tmpl', 'maxDate' => '20200101', 'minDate' => '00000001', 'maxRecurringEvents' => '', 'substitutePageTitle' => '1', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'organizer.' => array('organizerViewPid' => '', 'createOrganizerViewPid' => '', 'editOrganizerViewPid' => '', 'deleteOrganizerViewPid' => '', 'organizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer.tmpl', 'organizerModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer_model.tmpl', 'organizerModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/organizer_partner_model.tmpl', 'organizerModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/organizer_address_model.tmpl', 'organizerModelTemplate4FEUser' => 'EXT:cal/Resources/Private/Templates/v1/organizer_feuser_model.tmpl', 'maxRecurringEvents' => '', 'maxDate' => '20200101', 'minDate' => '00000001', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'calendar.' => array('createCalendarViewPid' => '', 'editCalendarViewPid' => '', 'deleteCalendarViewPid' => '', 'calendar.' => array('addIcon' => '<img src="###IMG_PATH###/create_calendar.gif" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_CALENDAR%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_CALENDAR%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_CALENDAR%%%'))))))), 'category.' => array('createCategoryViewPid' => '', 'categoryViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'editCategoryViewPid' => '', 'deleteCategoryViewPid' => '', 'notify.' => array('all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted')), 'category.' => array('defaultHeaderStyle' => 'default_catheader', 'defaultBodyStyle' => 'default_catbody'), 'tree.' => array('calendar' => '', 'category' => '', 'calendarTitle' => 'TEXT', 'calendarTitle.' => array(), 'rootElement' => 'TEXT', 'rootElement.' => array('wrap' => '<table class="treelevel0"><tr><td>|</td></tr></table>'), 'selector' => 'TEXT', 'selector.' => array('wrap' => '<input type="checkbox" name="tx_cal_controller[category][]" value="###UID###" | />'), 'element' => '<span class="###HEADERSTYLE###_bullet ###HEADERSTYLE###_legend_bullet" >&bull;</span><span class="###HEADERSTYLE###_text">###TITLE###</span>', 'emptyElement' => '<br/><br/>', 'subElement' => '<br /><table class="treelevel###LEVEL###" id="treelevel###UID###">', 'subElement_wrap.' => array('wrap' => '<tr><td>|</td></tr>'), 'subElement_pre' => '</table>', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'alternativeSelect' => 'CASE', 'alternativeSelect.' => array('key.' => array('data' => 'field:cur'), 'default' => 'TEXT', 'default.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&tx_cal_controller[category]={field:uid}', 'additionalParams.' => array('insertData' => '1'), 'wrap' => '<li>|</li>')), 'TEXT', '1.' => array('current' => '1', 'wrap' => '<li class="cur"><em>|</em></li>')))), 'day.' => array('dayViewPid' => '', 'dayViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" width="16" height="20" border="0" align="right" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" width="16" height="20" border="0" align="left" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'dayStart' => '0700', 'dayEnd' => '2300', 'dynamic' => '0', 'gridLength' => '15', 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dayTemplate' => 'EXT:cal/Resources/Private/Templates/v1/day.tmpl', 'dayTimeCell' => '<tr><td rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height=\'%s\'></td>', 'dayTimeCell2' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'dayEventPre' => '<td rowspan="%s" align="left" valign="top"', 'dayEventPost' => '</td>', 'classDayborder' => 'class="dayborder"', 'classDayborder2' => 'class="dayborder2"', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'dayFinishRow' => '</tr>', 'dateFormatWeekList' => '%A, %b %d', 'dateFormatDay' => '%a, %b %d', 'timeFormatDay' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_day_starttime', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'week.' => array('weekViewPid' => '', 'weekViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_WEEK%%%'))))), 'prevWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_WEEK%%%'))))), 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" alt="%%%NEXT%%%" class="previousweek_arrow" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" alt="%%%PREV%%%" class="nextweek_arrow" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dynamic' => '0', 'weekTemplate' => 'EXT:cal/Resources/Private/Templates/v1/week.tmpl', 'weekDisplayFullHour' => '<tr><td colspan="4" rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekDisplayInbetween' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekday_stdWrap.' => array('wrap' => '<span class="V9BOLD">|</span>'), 'classWeekborder' => 'class="weekborder"', 'weekEventPre' => '<td rowspan="%s" align="left" valign="top"', 'weekEventPost' => '</td>', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'weekFinishRow' => '</tr>', 'dateFormatWeekList' => '%a, %b %d', 'dateFormatWeek' => '%B %d', 'timeFormatWeek' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_week_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_week_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'month.' => array('monthViewPid' => '', 'monthViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '3024000', 'endPointCorrection' => '3024000', 'monthTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month.tmpl', 'monthSmallTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_small.tmpl', 'monthMediumTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_medium.tmpl', 'monthLargeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_large.tmpl', 'monthMiniTemplate' => '###MONTH_SMALL|+0###', 'monthMakeMiniCal' => '0', 'navigation' => '1', 'horizontalSidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/calendar_nav.tmpl', 'showListInMonthView' => '0', 'useListEventRenderSettingsView' => 'list', 'dateFormatMonth' => '%B', 'dateFormatDay' => '%d', 'weekdayFormatSmallMonth' => '%a', 'weekdayLengthSmallMonth' => '2', 'weekdayFormatMediumMonth' => '%a', 'weekdayLengthMediumMonth' => '0', 'weekdayFormatLargeMonth' => '%A', 'weekdayLengthLargeMonth' => '0', 'smallLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'largeLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'nextMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_MONTH%%%'))))), 'prevMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_MONTH%%%'))))), 'monthSmallStyle' => 'monthSmallBasic', 'monthMediumStyle' => 'monthMediumBasic', 'monthLargeStyle' => 'monthLargeBasic', 'monthOffStyle' => 'monthOff', 'monthSelectedStyle' => 'monthSelected', 'monthSelectedWeekStyle' => 'monthSelectedWeek', 'monthDaySelectedWeekStyle' => 'monthSelectedWeek', 'monthWeekendStyle' => 'monthWeekend', 'monthTodayStyle' => 'monthToday', 'monthCurrentWeekStyle' => 'monthCurrentWeek', 'monthDayCurrentWeekStyle' => 'monthCurrentWeek', 'monthCornerStyle' => 'monthCorner', 'monthDayOfWeekStyle' => 'cal_day%s', 'eventDayStyle' => 'eventDay', 'monthWeekWithEventStyle' => 'monthWeekWithEvent', 'displayDate' => 'TEXT', 'displayDate.' => array('current' => '1', 'strftime' => '%B %Y'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|')), 'year.' => array('yearViewPid' => '', 'yearViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '518400', 'endPointCorrection' => '518400', 'yearTemplate' => 'EXT:cal/Resources/Private/Templates/v1/year.tmpl', 'nextYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_YEAR%%%'))))), 'prevYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_YEAR%%%'))))), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'dontShowOldEvents' => '0'), 'list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => '01 01 2007', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '-&nbsp; |'), 'teaser' => '< tt_content.text.20', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'stripHtml' => '0', 'field' => 'teaser'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'listViewPid' => null), 'subscription.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))))), 'ics.' => array('showIcsLinks' => '0', 'link_wrap' => '<div class="ics_link">%s</div>', 'icsViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1'), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCalendarLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCalendarLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCategoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCategoryLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsTemplate' => '{$plugin.tx_cal_controller.view.ics.icsTemplate}', 'icsListTemplate' => '{$plugin.tx_cal_controller.view.ics.icsListTemplate}', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'single_ics.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'admin.' => array('adminTemplate' => 'EXT:cal/Resources/Private/Templates/v1/admin.tmpl', 'adminViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'adminViewLink.' => array('current' => '0', 'value' => '<img src="###IMG_PATH###/config_calendar.gif" border="0" style="margin:2px;"/>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%ADMINISTRATION_VIEW%%%')))), 'outerWrap' => '<div class="admin_link">|</div>')), 'freeAndBusy.' => array('enable' => '0', 'headerStyle' => 'fnb_header', 'bodyStyle' => 'fnb_body', 'eventTitle' => 'Busy', 'defaultCalendarUid' => '0'), 'other.' => array('showLogin' => '0', 'loginPageId' => '', 'userFolderId' => '', 'showSearch' => '0', 'showGoto' => '0', 'showCategorySelection' => '0', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'showCalendarSelection' => '0', 'optionString' => '<option value="%s">%s</option>', 'showTomorrowEvents' => '0', 'tomorrowsEvents' => 'TEXT', 'tomorrowsEvents.' => array('current' => '1', 'wrap' => '|<br />'), 'legend_stdWrap.' => array('wrap' => '|<div style="text-align:right;margin-left:10px;"></div>'), 'showTodos' => '0', 'showJumps' => '0', 'dateFormatWeekJump' => '%b %d', 'listWeeks_stdWrap.' => array('wrap' => '<option value="|" >###WEEK1### - ###WEEK2###</option>'), 'listWeeksSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###WEEK1### - ###WEEK2###</option>'), 'listWeek_onlyShowCurrentYear' => '0', 'listWeek_totalWeekCount' => '20', 'listWeek_previousWeekCount' => '5', 'dateFormatMonthJump' => '%B %Y', 'listMonth_stdWrap.' => array('wrap' => '<option value="|" >###MONTH###</option>'), 'listMonthSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###MONTH###</option>'), 'listMonth_onlyShowCurrentYear' => '0', 'listMonth_totalMonthCount' => '12', 'listMonth_previousMonthCount' => '3', 'listMonth_referenceToday' => '1', 'dateFormatYearJump' => '%Y', 'listYear_stdWrap.' => array('wrap' => '<option value="|" >###YEAR###</option>'), 'listYearSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###YEAR###</option>'), 'listYear_totalYearCount' => '3', 'listYear_previousYearCount' => '1', 'sidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/sidebar.tmpl', 'searchBoxTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_box.tmpl', 'monthMenu.' => array('monthStart' => 'TEXT', 'monthStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:m}'), 'prioriCalc' => 'intval', 'thisMonth' => '1'), 'yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}'), 'prioriCalc' => 'intval'), 'count' => '5', 'format' => '%b %Y', 'month_stdWrap.' => array('wrap' => '<span>|</span>')), 'yearMenu.' => array('yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}-3'), 'prioriCalc' => 'intval', 'thisYear' => '1'), 'count' => '5', 'format' => '%Y', 'year_stdWrap.' => array('wrap' => '<span>|</span>'))), 'search.' => array('searchResultAllTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_all.tmpl', 'searchResultEventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_event.tmpl', 'searchResultLocationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_location.tmpl', 'searchResultOrganizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_organizer.tmpl', 'searchEventFieldList' => 'title,organizer,location,description', 'searchLocationFieldList' => 'name', 'searchOrganizerFieldList' => 'name', 'searchUserFieldList' => 'name', 'searchGroupFieldList' => 'title', 'startRange' => '19700102', 'endRange' => '20300101', 'searchLinkUrl' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchLinkUrl.' => array('current' => '', 'value' => '|', 'required' => '1', 'typolink.' => array('useCacheHash' => '1', 'returnLast' => 'url')), 'searchAllLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchAllLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '|%%%SEARCH%%%'))))), 'defaultValues.' => array('query' => '', 'start_day' => 'now', 'end_day' => '+1 month'), 'startSearchAfterSubmit' => '1', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_event.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%QUERY_FOR%%% %%%EVENT%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'search_location.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_organizer.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'search_all.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%SEARCH_EVERYTHING%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'searchEvent' => 'TEXT', 'searchEvent.' => array('current' => '1', 'wrap' => '<h2>%%%EVENTS%%%</h2>|'), 'searchLocation' => 'TEXT', 'searchLocation.' => array('current' => '1', 'wrap' => '<h2>%%%LOCATION%%%</h2>|'), 'searchOrganizer' => 'TEXT', 'searchOrganizer.' => array('current' => '1', 'wrap' => '<h2>%%%ORGANIZER%%%</h2>|')), 'categoryMode' => '0', 'calendarMode' => '0', 'allowedViewsToLinkTo' => array('list', 'event')), 'module.' => array('locationloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_locationloader.tmpl'), 'organizerloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_organizerloader.tmpl')), 'autoFetchTextFields' => 'imagecaption,imagealttext,imagetitletext,attachmentcaption', 'autoFetchTextSplitValue.' => array('char' => '10'), 'lib.' => array('list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0')), '_CSS_DEFAULT_STYLE' => ' /* Styled by TYPO3 Content Rendering Group - ben@netcreators.com 2007 */ /* START new classes and id\'s */ #month-header { width: 100%; margin-bottom: 7px; } #month-header-prevnext { float: left; } #month-header-icons { float: right; text-align: right; } #month-header-icons IMG, #month-header-prevnext IMG , #month-footer IMG{ border: 0px solid; } #month-footer { width: 735px; margin-bottom: 7px; } #month-footer-header { text-align: center; } table.month-small { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-weeknums { border-right:1px solid #AAAAAA; background-color:#EFEFEF; } .month-weekdays { border-bottom:1px solid #AAAAAA; background-color:#EFEFEF; } .month-small a:link,.monthoff a:visited { color: #000000; } .month-small th, .month-small td { padding: 2px; width: 22px; font-size: 10px; text-align: right; } .month-small th{ text-align: center; } .month-large { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-large th, .month-large td { border: 1px solid #A1A5A9; } .month-large .weekday { background-color: #EEE; height: 12px; } .month-large .weeknum { background-color: #A1A5A9; width: 22px; } .month-large .day { height: 100px; width: 100px; vertical-align: top; text-align: left; } .month-large .daylink { font-weight: bold; } .month-large .day div { text-align: right; padding-right: 3px; } .month-large .dayNum { border-bottom: none; background-color: #E8EEF7; text-align: right; } .month-large .days td { border-top: none; } .month-large .alldays td { border-top: none; border-bottom: none; } .month-large .alldays .event div{ -moz-border-radius:2px 2px 2px 2px; } /*For the time being calendar-nav remains a table - no proper alternatives came to my mind yet - suggestions?*/ #calendar-nav { } #calendar-nav td { vertical-align: top; } #calendar-nav td#previous { width: 175px; } #calendar-nav td#list { width: 188px; } #calendar-nav td#legend { width: 188px; } #calendar-nav td#next { width: 175px; } #link-ics, #link-admin { width: 100%; text-align: center; } /* END new classes and id\'s */ .calborder { background-color: #fff; border: 1px solid #A1A5A9; } .tbll { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_l.gif) no-repeat; width: 8px } .tblbot { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_m.gif) repeat-x; width: 100% } .tblr { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_r.gif) no-repeat; width: 8px } .rowOn { background-color: #cfc; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOn2 { background-color: #cfc; border-top: 1px solid #fff; } .rowOff { background-color: #E1E8F1; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOff2 { background-color: #E1E8F1; border-top: 1px solid #fff; } .rowToday { background-color: #cff; border-top: 1px solid #fff; border-left: 1px solid #fff; } .tx-cal-controller .padd { /*XXXpadding: 2px;*/ } .eventbg_1 { background-color: #557CA3; padding: 2px; } .eventbg_2 { background-color: #53A062; padding: 2px; } .eventbg_3 { background-color: #E84F25; padding: 2px; } .eventbg_4 { background-color: #B257A2; padding: 2px; } .eventbg_5 { background-color: #D42020; padding: 2px; } .eventbg_6 { background-color: #B88F0B; padding: 2px; } .eventbg_7 { background-color: #73738C; padding: 2px; } #allday a { font-size: 9px; color: #fff; font-weight: 900; text-decoration: none; } #allday a:hover { text-decoration: underline; } .eventbg2_1 { background-color: #6699CC; border: 1px solid #557CA3; } .eventbg2_2 { background-color: #4FC464; border: 1px solid #53A062; } .eventbg2_3 { background-color: #FF6D3B; border: 1px solid #E84F25; } .eventbg2_4 { background-color: #EA62D4; border: 1px solid #B257A2; } .eventbg2_5 { background-color: #FF5E56; border: 1px solid #D42020; } .eventbg2_6 { background-color: #CCB21F; border: 1px solid #B88F0B; } .eventbg2_7 { background-color: #9292A1; border: 1px solid #73738C; } .dayborder { background-color: #fff; border-top: 1px solid #A1A5A9; } .dayborder2 { background-color: #fff; border-top: 1px dashed #ccc; } .tx-cal-controller .title { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); padding: 5px; } .tx-cal-controller .title h1 { font-family: Helvetica,sans-serif; font-size: 18px; color: #000; margin: 0; } .monthBack { background-color: #A1A5A9; } .monthSmallBasic { text-align: left; vertical-align: top; } .monthMediumBasic { height: 20px; width: 20px; text-align: left; vertical-align: top; } .monthOff, .monthOff a:link,.monthOff a:visited { color: #BBBBBB ! important; } .monthWeekend { background-color: #FFFFEF; } .monthCurrentWeek { background-color: #F2F9FF; } .month-small th, .month-medium th, .month-large th { font-weight: normal; } .month-small th a:link, .month-small th a:visited, .month-medium th a:link, .month-medium th a:visited, .month-large th a:link, .month-large th a:visited{ font-weight: bold; color: #000000; } .monthToday { background:#99AABB none repeat scroll 0% !important; border-color:#556677 rgb(170, 187, 204) rgb(170, 187, 204) rgb(85, 102, 119) !important; border-style:solid !important; border-width:1px !important; } .monthToday a:link, .monthToday a:visited { color:#FFFFFF; } .monthCorner { border-bottom: 1px solid #AAAAAA; } .monthSelected, .monthSelectedWeek { background-color: #AACCEE; } .current td, .days .current td, tr.current th { background-color: #F2F9FF; } .selected { background-color: #AACCEE; } .monthEventTop { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); border-top: 1px solid #A1A5A9; } .monthEventLine { border-right: 1px dotted #A1A5A9; } .medtitle { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); height: 20px; margin-top: 3px; font-weight: 900; } .yearreg { background-color: #fff; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearoff { background-color: #F2F2F2; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearon { background-color: #F2F9FF; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearmonth { background-color: #ccc; } .yearweek { background-color: #eee; width: 30px; font-size: 9px; font-weight: 900; text-align: center; height: 15px; } .eventborder { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/day_title.gif); border: 1px #006699 solid; } .dateback { background-color: #eee; } .weekborder { border-top: 1px dashed #A1A5A9; border-right: 1px solid #A1A5A9; } .weekborder2 { border-right: 1px solid #A1A5A9; } .timeborder { border-right: 2px solid #A1A5A9; border-top: 1px dashed #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .timeborder2 { border-right: 2px solid #A1A5A9; border-top: 1px solid #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback img{ border:none; } .tx-cal-controller .sideback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); } a.psf { text-decoration: none; } a.psf:link { color: #0066FF; } a.psf:visited { color: #0066FF; } a.psf:active { color: #3366CC; } a.psf:hover { color: #000099; text-decoration: underline; } a.ps2 { text-decoration: underline; } a.ps2:link { color: #0066FF; } a.ps2:visited { color: #0066FF; } a.ps2:active { color: #3366CC; } a.ps2:hover { color: #000099; } a.ps3 { text-decoration: none; } a.ps3:link { color: #000; } a.ps3:visited { color: #000; } a.ps3:active { color: #000; } a.ps3:hover { color: #000; text-decoration: underline; } a.ps { text-decoration: none; } a.ps:link { color: #fff; } a.ps:visited { color: #fff; } a.ps:active { color: #fff; } a.ps:hover { color: #fff; text-decoration: underline; } .legend_calendar { font-size: 9px; color: #000000; margin-top: 1em; margin-left: 1em; } .V9 { text-align:left ! important; font-size: 9px; color: #000000; } .V9 ul { margin-bottom: 0px; padding-bottom: 0px; margin-left: 20px; padding-left: 0px; } .V9 li { margin-bottom: 0px; padding-bottom: 0px; } .V10W { font-size: 10px; color: #FFFFFF; text-decoration: none; } .V9W { font-size: 9px; color: #FFFFFF; text-decoration: none; } .V10WB { font-size: 10px; color: #FFFFFF; font-weight: 900; } .V9G { font-size: 9px; color: #666666; } .V10 { font-size: 10px; color: #000000; } .V9BOLD { font-size: 9px; font-weight: 900; } .G10 { font-size: 11px; color: #0066FF; } .G10B { font-size: 11px; color: #000000; } .G10BOLD { font-size: 11px; font-weight: 900; } .G10G { font-size: 11px; color: #A1A5A9; } .V12 { font-size: 12px; color: #000000; } .tx-cal-controller .eventfont { font-size: 11px; color: #FFFFFF; } .tx-cal-controller .query_style { font-size: 11px; width: 156px; margin-bottom: 0; } .tx-cal-controller .search_style { font-size: 12px; width: 134px; margin-bottom: 0; } .tx-cal-controller .login_style { font-size: 11px; width: 80px; margin-bottom: 0; } .tx-cal-controller .bold a:link { font-weight: bold; } .tx-cal-controller .bold a:active { font-weight: bold; } .tx-cal-controller .bold a:visited { font-weight: bold; } /* Pagebrowser */ .tx-cal-controller .pagebrowser span { padding: 0 2px; } /*------------ Category style package: default (blue) - start ------------*/ .default_categoryheader, .default_catheader { background-color: #557CA3; } .V9G .default_categoryheader, .V9G .deafult_catheader { background-color: transparent !important; color: #557CA3 !important; } .default_categoryheader_bullet, .default_catheader_bullet { color: #557CA3; font-size: 13px; } .default_categoryheader_text, .default_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .default_categoryheader_legend_bullet, .default_catheader_legend_bullet { margin-left: 3px; } .default_categoryheader_legend_text, .default_catheader_legend_text { } .default_categoryheader_allday, .default_catheader_allday { text-align: center; background-color: #6699CC; } .default_categorybody, .default_catbody { background-color: #6699CC; border: 1px solid #557CA3; color: #fff; } .default_categorybody a:link, .default_catbody a:link { color: #fff; } /*------------ Category style package: default (blue) - end ------------*/ /*------------ Category style package: green - start ------------*/ .green_catheader, .green_catheader_allday { background-color: #53A062; } .V9G .green_catheader { background-color: transparent !important; color: #53A062 !important; } .green_catheader_bullet { color: #4FC464; font-size: 13px; } .green_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .green_catheader_legend_bullet { margin-left: 3px; } .green_catheader_bullet_text { } .green_catheader_allday { text-align: center; background-color: #4FC464; } .green_catbody { background-color: #4FC464; border: 1px solid #53A062; color: #fff; } .green_catbody a:link { color: #fff; } /*------------ Category style package: green - end ------------*/ /*------------ Category style package: orange - start ------------*/ .orange_catheader, .orange_catheader_allday { background-color: #E84F25; } .V9G .orange_catheader { background-color: transparent !important; color: #E84F25 !important; } .orange_catheader_bullet { color: #FF6D3B; font-size: 13px; } .orange_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .orange_catheader_legend_bullet { margin-left: 3px; } .orange_catheader_bullet_text { } .orange_catheader_allday { text-align: center; background-color: #FF6D3B; } .orange_catbody { background-color: #FF6D3B; border: 1px solid #E84F25; color: #fff; } .orange_catbody a:link { color: #fff; } /*------------ Category style package: orange - end ------------*/ /*------------ Category style package: pink - start ------------*/ .pink_catheader, .pink_catheader_allday { background-color: #B257A2; } .V9G .pink_catheader { background-color: transparent !important; color: #B257A2 !important; } .pink_catheader_bullet { color: #EA62D4; font-size: 13px; } .pink_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .pink_catheader_legend_bullet { margin-left: 3px; } .pink_catheader_bullet_text { } .pink_catheader_allday { text-align: center; background-color: #EA62D4; } .pink_catbody { background-color: #EA62D4; border: 1px solid #B257A2; color: #fff; } .pink_catbody a:link { color: #fff; } /*------------ Category style package: pink - end ------------*/ /*------------ Category style package: red - start ------------*/ .red_catheader, .red_catheader_allday { background-color: #D42020; } .V9G .red_catheader { background-color: transparent !important; color: #D42020 !important; } .red_catheader_bullet { color: #FF5E56; font-size: 13px; } .red_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .red_catheader_legend_bullet { margin-left: 3px; } .red_catheader_bullet_text { } .red_catheader_allday { text-align: center; background-color: #FF5E56; } .red_catbody { background-color: #FF5E56; border: 1px solid #D42020; color: #fff; } .red_catbody a:link { color: #fff; } /*------------ Category style package: red - end ------------*/ /*------------ Category style package: yellow - start ------------*/ .yellow_catheader, .yellow_catheader_allday { background-color: #B88F0B; } .V9G .yellow_catheader { background-color: transparent !important; color: #B88F0B !important; } .yellow_catheader_bullet { color: #CCB21F; font-size: 13px; } .yellow_catheader_text{ color: #000000; font-size: 11px; margin-left: 3px; } .yellow_catheader_legend_bullet { margin-left: 3px; } .yellow_catheader_bullet_text { } .yellow_catheader_allday { text-align: center; background-color: #CCB21F; } .yellow_catbody { background-color: #CCB21F; border: 1px solid #B88F0B; color: #fff; } .yellow_catbody a:link { color: #fff; } /*------------ Category style package: yellow - end ------------*/ /*------------ Category style package: grey - start ------------*/ .grey_catheader, .grey_catheader_allday { background-color: #73738C; } .V9G .grey_catheader { background-color: transparent !important; color: #73738C !important; } .grey_catheader_bullet { color: #9292A1; font-size: 13px; } .grey_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .grey_catheader_legend_bullet { margin-left: 3px; } .grey_catheader_bullet_text { } .grey_catheader_allday { text-align: center; background-color: #9292A1; } .grey_catbody { background-color: #9292A1; border: 1px solid #73738C; color: #fff; } .grey_catbody a:link { color: #fff; } /*------------ Category style package: grey - end ------------*/ .tx-cal-controller .bold { /*font-weight: bold;*/ } .refresh_calendar { margin-right: 5px; } /* Start of moving stuff from the templat into this file */ .tx-cal-controller .weekview { margin: 0 auto; } .tx-cal-controller .weekview .nextweek_arrow, .tx-cal-controller .weekview .previousweek_arrow { width: 16px; height: 20px; border: 0px; text-align: left; } .previsousweek_arrow { text-align: right; } /*------------- free & busy styles ----------*/ .fnb_header { background-color: #444444; } .fnb_body { background-color: #888888; border: 1px solid #999999; color: #fff; } /*------------- list styles ------------*/ .tx-cal-controller .even { background-color: #eeeeee; } .tx-cal-controller .treelevel0 { } .tx-cal-controller .treelevel1 { margin-left:20px; } .tx-cal-controller .treelevel2 { margin-left:30px; } .tx-cal-controller label { display:block; float:left; margin-bottom: 0px; padding-right:1em; text-align:right; width:120px; } .tx-cal-controller fieldset div { clear:left; } .tx-cal-controller .noborder { border: none; } .tx-cal-controller .search-result { list-style: none; margin-left: 0px; padding-left: 0px; } .tx-cal-controller .search-result li { padding-bottom: 1em; } .tx-cal-controller .search_result li .even { background-color: #EEEEEE; } .tx_cal_controller img .mouse_pointer { cursor:pointer; }/* #cal_general,#cal_location,#cal_organizer,#cal_freq,#cal_exception,#cal_files,#cal_notify { height:210px; overflow:auto; padding:8px; }*/ .x-form-label-top .x-form-item label { width:70px ! important; } .x-form-invalid, textarea.x-form-invalid { background: none ! important; } #cal_event_description { margin-top:10px; } .admin_link { width:100%; text-align:center; } .ics_link { width:100%; text-align:center; } .tx-cal-controller .cal_required { color: red; } .tx-cal-controller .constrain { color: red; font-weight:bold; } #editorWrap1 textarea {display: block} /*Credits: By Santosh Setty (http://webdesigninfo.wordpress.com) */ /*Posted to: Dynamic Drive CSS Library (http://www.dynamicdrive.com/style/) */ #tx_cal_controller_create_element { width:540px; } .basictab ul{ margin: 4px; padding: 3px 0; margin-left: 0; font: bold 12px Verdana; border-bottom: 1px solid gray; list-style-type: none; text-align: left; /*set to left, center, or right to align the menu as desired*/ } .basictab li{ display: inline; margin: 0; } .basictab li a{ text-decoration: none; padding: 3px 7px; margin-right: 3px; border: 1px solid gray; border-bottom: none; background-color: #6699CC; color: #FFFFFF; } .basictab li a:visited{ color: #2d2b2b; } .basictab li a:hover, .basictab li a.current{ background-color: #557CA3; color: #FFFFFF; } .basictab li a:active{ color: #000000; } .tabcontainer{ clear: left; width:95%; /*width of 2nd level sub menus*/ height:1.5em; /*height of 2nd level sub menus. Set to largest\'s sub menu\'s height to avoid jittering.*/ } .tabcontent{ display:none; } #tx_cal_controller_create_element input[type="text"]:not([size]) { width: 6em; /* Desired width of input field */ } #tx_cal_controller_create_element .treelevel0{ display:block; margin-left: 70px; } #tx_cal_controller_create_element p { margin: 7px; } #tx_cal_controller_create_element .notify, #tx_cal_controller_create_element .shared, #tx_cal_controller_create_element .exception { display:block; margin-left: 140px; } #sc1 label { width:50px; } #allday { width:10px; } #category_tree { float:right; width:200px; } #until label, #by_day label, #by_monthday label, #by_month label{ margin-left: 50px; } #by_month label, #by_monthday label{ width: 230px; } #categoryEntries { height:80px; overflow:auto; } .reminderOffset { width: 2em !important; } ', 'useInternalCaching' => 1, 'cachingEngine' => 'cachingFramework', 'writeCachingInfoToDevlog' => 0, 'pages' => '31', 'recursive' => 1, 'cache' => 1, 'getdate' => 20240328, 'view' => 'list', 'lastview' => '', 'uid' => 0, 'type' => '', 'monitor' => '', 'gettime' => 0, 'postview' => 0, 'page_id' => 0, 'option' => '', 'switch_calendar' => 0, 'location' => '0', 'preview' => 0, 'day' => 28, 'month' => 3, 'year' => 2024))
at call_user_func_array(array(object(TYPO3\CMS\Cal\Controller\Controller), 'main'), array('', array('userFunc' => 'TYPO3\\CMS\\Cal\\Controller\\Controller->main', 'pidList' => '18,23', 'sessionPiVars' => 'page_id', 'calendarName' => 'My Calendar', 'allowSubscribe' => '1', 'subscribeFeUser' => '0', 'subscribeWithCaptcha' => '0', 'additionalWrapperClasses' => '', 'noWrapInBaseClass' => '0', 'dateConfig.' => array('dayPosition' => '2', 'monthPosition' => '1', 'yearPosition' => '0', 'splitSymbol' => '-', 'monthAbbreviationLength' => '3', 'weekdayAbbreviationLength' => '3'), 'dateParserConf.' => array('USmode' => '0'), 'date_stdWrap.' => array(), 'showRecordsWithoutDefaultTranslation' => '1', 'view.' => array('allowedViews' => '', 'customViews' => '', 'noViewFoundHelpText' => 'Controller function not found:', 'category' => '', 'calendar' => '', 'imagePath' => 'EXT:cal/Resources/Private/Templates/v1/img', 'javascriptPath' => 'EXT:cal/Resources/Private/Templates/v1/js', 'weekStartDay' => 'Monday', 'dayLinkTarget' => 'day', 'weekLinkTarget' => 'week', 'monthLinkTarget' => 'month', 'yearLinkTarget' => 'year', 'listLinkTarget' => 'list', 'locationLinkTarget' => 'location', 'organizerLinkTarget' => 'organizer', 'startLinkRange' => '-5 month', 'endLinkRange' => '+5 month', 'required' => '<span class="cal_required">*</span>', 'defaultLinkSetup' => 'TEXT', 'defaultLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1')), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'defaultViewLinkSetup' => 'TEXT', 'defaultViewLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'view', 'wrap' => '%%%|_VIEW%%%', 'case' => 'upper', 'required' => '1')))), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'backLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'showEditableEventsOnly' => '0', 'event.' => array('eventViewPid' => '', 'createEventViewPid' => '', 'editEventViewPid' => '', 'deleteEventViewPid' => '', 'eventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/event.tmpl', 'eventModelTemplate' => 'fileadmin/templates/cal_event_model.tmpl', 'subscriptionManagerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/subscription_manager.tmpl', 'substitutePageTitle' => '1', 'isPreview' => '0', 'categoryLink_stdWrap.' => array('wrap' => ''), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div><br />|</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>|</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'notify.' => array('subscriptionViewPid' => '', 'confirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyConfirm.tmpl', 'confirmTitle' => 'Please confirm the event monitoring on www.abc.com', 'unsubscribeConfirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyUnsubscribeConfirm.tmpl', 'unsubscribeConfirmTitle' => 'Please confirm the event monitoring stop on www.abc.com', 'all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'remind' => '1', 'remind.' => array('time' => '30', 'all.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/remind.tmpl', 'emailTitle' => 'Reminder for event: ###TITLE###'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'meeting.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/invite.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/inviteOnChange.tmpl', 'statusViewPid' => '', 'managerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/meetingManager.tmpl', 'lookingAhead' => '300000;'), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'title.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'notification.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'todo.' => array('todoInlineModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_inline_model.tmpl', 'todoSeparateModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_separate_model.tmpl', 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'location.' => array('locationViewPid' => '', 'createLocationViewPid' => '', 'editLocationViewPid' => '', 'deleteLocationViewPid' => '', 'locationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location.tmpl', 'locationModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location_model.tmpl', 'locationModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/location_partner_model.tmpl', 'locationModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/location_address_model.tmpl', 'maxDate' => '20200101', 'minDate' => '00000001', 'maxRecurringEvents' => '', 'substitutePageTitle' => '1', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'organizer.' => array('organizerViewPid' => '', 'createOrganizerViewPid' => '', 'editOrganizerViewPid' => '', 'deleteOrganizerViewPid' => '', 'organizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer.tmpl', 'organizerModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer_model.tmpl', 'organizerModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/organizer_partner_model.tmpl', 'organizerModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/organizer_address_model.tmpl', 'organizerModelTemplate4FEUser' => 'EXT:cal/Resources/Private/Templates/v1/organizer_feuser_model.tmpl', 'maxRecurringEvents' => '', 'maxDate' => '20200101', 'minDate' => '00000001', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'calendar.' => array('createCalendarViewPid' => '', 'editCalendarViewPid' => '', 'deleteCalendarViewPid' => '', 'calendar.' => array('addIcon' => '<img src="###IMG_PATH###/create_calendar.gif" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_CALENDAR%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_CALENDAR%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_CALENDAR%%%'))))))), 'category.' => array('createCategoryViewPid' => '', 'categoryViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'editCategoryViewPid' => '', 'deleteCategoryViewPid' => '', 'notify.' => array('all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted')), 'category.' => array('defaultHeaderStyle' => 'default_catheader', 'defaultBodyStyle' => 'default_catbody'), 'tree.' => array('calendar' => '', 'category' => '', 'calendarTitle' => 'TEXT', 'calendarTitle.' => array(), 'rootElement' => 'TEXT', 'rootElement.' => array('wrap' => '<table class="treelevel0"><tr><td>|</td></tr></table>'), 'selector' => 'TEXT', 'selector.' => array('wrap' => '<input type="checkbox" name="tx_cal_controller[category][]" value="###UID###" | />'), 'element' => '<span class="###HEADERSTYLE###_bullet ###HEADERSTYLE###_legend_bullet" >&bull;</span><span class="###HEADERSTYLE###_text">###TITLE###</span>', 'emptyElement' => '<br/><br/>', 'subElement' => '<br /><table class="treelevel###LEVEL###" id="treelevel###UID###">', 'subElement_wrap.' => array('wrap' => '<tr><td>|</td></tr>'), 'subElement_pre' => '</table>', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'alternativeSelect' => 'CASE', 'alternativeSelect.' => array('key.' => array('data' => 'field:cur'), 'default' => 'TEXT', 'default.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&tx_cal_controller[category]={field:uid}', 'additionalParams.' => array('insertData' => '1'), 'wrap' => '<li>|</li>')), 'TEXT', '1.' => array('current' => '1', 'wrap' => '<li class="cur"><em>|</em></li>')))), 'day.' => array('dayViewPid' => '', 'dayViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" width="16" height="20" border="0" align="right" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" width="16" height="20" border="0" align="left" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'dayStart' => '0700', 'dayEnd' => '2300', 'dynamic' => '0', 'gridLength' => '15', 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dayTemplate' => 'EXT:cal/Resources/Private/Templates/v1/day.tmpl', 'dayTimeCell' => '<tr><td rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height=\'%s\'></td>', 'dayTimeCell2' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'dayEventPre' => '<td rowspan="%s" align="left" valign="top"', 'dayEventPost' => '</td>', 'classDayborder' => 'class="dayborder"', 'classDayborder2' => 'class="dayborder2"', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'dayFinishRow' => '</tr>', 'dateFormatWeekList' => '%A, %b %d', 'dateFormatDay' => '%a, %b %d', 'timeFormatDay' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_day_starttime', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'week.' => array('weekViewPid' => '', 'weekViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_WEEK%%%'))))), 'prevWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_WEEK%%%'))))), 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" alt="%%%NEXT%%%" class="previousweek_arrow" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" alt="%%%PREV%%%" class="nextweek_arrow" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dynamic' => '0', 'weekTemplate' => 'EXT:cal/Resources/Private/Templates/v1/week.tmpl', 'weekDisplayFullHour' => '<tr><td colspan="4" rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekDisplayInbetween' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekday_stdWrap.' => array('wrap' => '<span class="V9BOLD">|</span>'), 'classWeekborder' => 'class="weekborder"', 'weekEventPre' => '<td rowspan="%s" align="left" valign="top"', 'weekEventPost' => '</td>', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'weekFinishRow' => '</tr>', 'dateFormatWeekList' => '%a, %b %d', 'dateFormatWeek' => '%B %d', 'timeFormatWeek' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_week_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_week_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'month.' => array('monthViewPid' => '', 'monthViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '3024000', 'endPointCorrection' => '3024000', 'monthTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month.tmpl', 'monthSmallTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_small.tmpl', 'monthMediumTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_medium.tmpl', 'monthLargeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_large.tmpl', 'monthMiniTemplate' => '###MONTH_SMALL|+0###', 'monthMakeMiniCal' => '0', 'navigation' => '1', 'horizontalSidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/calendar_nav.tmpl', 'showListInMonthView' => '0', 'useListEventRenderSettingsView' => 'list', 'dateFormatMonth' => '%B', 'dateFormatDay' => '%d', 'weekdayFormatSmallMonth' => '%a', 'weekdayLengthSmallMonth' => '2', 'weekdayFormatMediumMonth' => '%a', 'weekdayLengthMediumMonth' => '0', 'weekdayFormatLargeMonth' => '%A', 'weekdayLengthLargeMonth' => '0', 'smallLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'largeLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'nextMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_MONTH%%%'))))), 'prevMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_MONTH%%%'))))), 'monthSmallStyle' => 'monthSmallBasic', 'monthMediumStyle' => 'monthMediumBasic', 'monthLargeStyle' => 'monthLargeBasic', 'monthOffStyle' => 'monthOff', 'monthSelectedStyle' => 'monthSelected', 'monthSelectedWeekStyle' => 'monthSelectedWeek', 'monthDaySelectedWeekStyle' => 'monthSelectedWeek', 'monthWeekendStyle' => 'monthWeekend', 'monthTodayStyle' => 'monthToday', 'monthCurrentWeekStyle' => 'monthCurrentWeek', 'monthDayCurrentWeekStyle' => 'monthCurrentWeek', 'monthCornerStyle' => 'monthCorner', 'monthDayOfWeekStyle' => 'cal_day%s', 'eventDayStyle' => 'eventDay', 'monthWeekWithEventStyle' => 'monthWeekWithEvent', 'displayDate' => 'TEXT', 'displayDate.' => array('current' => '1', 'strftime' => '%B %Y'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|')), 'year.' => array('yearViewPid' => '', 'yearViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '518400', 'endPointCorrection' => '518400', 'yearTemplate' => 'EXT:cal/Resources/Private/Templates/v1/year.tmpl', 'nextYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_YEAR%%%'))))), 'prevYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_YEAR%%%'))))), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'dontShowOldEvents' => '0'), 'list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => '01 01 2007', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '-&nbsp; |'), 'teaser' => '< tt_content.text.20', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'stripHtml' => '0', 'field' => 'teaser'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'subscription.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))))), 'ics.' => array('showIcsLinks' => '{$plugin.tx_cal_controller.view.ics.showIcsLinks}', 'link_wrap' => '<div class="ics_link">%s</div>', 'icsViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1'), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCalendarLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCalendarLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCategoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCategoryLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsTemplate' => '{$plugin.tx_cal_controller.view.ics.icsTemplate}', 'icsListTemplate' => '{$plugin.tx_cal_controller.view.ics.icsListTemplate}', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'single_ics.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'admin.' => array('adminTemplate' => 'EXT:cal/Resources/Private/Templates/v1/admin.tmpl', 'adminViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'adminViewLink.' => array('current' => '0', 'value' => '<img src="###IMG_PATH###/config_calendar.gif" border="0" style="margin:2px;"/>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%ADMINISTRATION_VIEW%%%')))), 'outerWrap' => '<div class="admin_link">|</div>')), 'freeAndBusy.' => array('enable' => '0', 'headerStyle' => 'fnb_header', 'bodyStyle' => 'fnb_body', 'eventTitle' => 'Busy', 'defaultCalendarUid' => '0'), 'other.' => array('showLogin' => '0', 'loginPageId' => '', 'userFolderId' => '', 'showSearch' => '0', 'showGoto' => '0', 'showCategorySelection' => '0', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'showCalendarSelection' => '0', 'optionString' => '<option value="%s">%s</option>', 'showTomorrowEvents' => '0', 'tomorrowsEvents' => 'TEXT', 'tomorrowsEvents.' => array('current' => '1', 'wrap' => '|<br />'), 'legend_stdWrap.' => array('wrap' => '|<div style="text-align:right;margin-left:10px;"></div>'), 'showTodos' => '0', 'showJumps' => '0', 'dateFormatWeekJump' => '%b %d', 'listWeeks_stdWrap.' => array('wrap' => '<option value="|" >###WEEK1### - ###WEEK2###</option>'), 'listWeeksSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###WEEK1### - ###WEEK2###</option>'), 'listWeek_onlyShowCurrentYear' => '0', 'listWeek_totalWeekCount' => '20', 'listWeek_previousWeekCount' => '5', 'dateFormatMonthJump' => '%B %Y', 'listMonth_stdWrap.' => array('wrap' => '<option value="|" >###MONTH###</option>'), 'listMonthSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###MONTH###</option>'), 'listMonth_onlyShowCurrentYear' => '0', 'listMonth_totalMonthCount' => '12', 'listMonth_previousMonthCount' => '3', 'listMonth_referenceToday' => '1', 'dateFormatYearJump' => '%Y', 'listYear_stdWrap.' => array('wrap' => '<option value="|" >###YEAR###</option>'), 'listYearSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###YEAR###</option>'), 'listYear_totalYearCount' => '3', 'listYear_previousYearCount' => '1', 'sidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/sidebar.tmpl', 'searchBoxTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_box.tmpl', 'monthMenu.' => array('monthStart' => 'TEXT', 'monthStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:m}'), 'prioriCalc' => 'intval', 'thisMonth' => '1'), 'yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}'), 'prioriCalc' => 'intval'), 'count' => '5', 'format' => '%b %Y', 'month_stdWrap.' => array('wrap' => '<span>|</span>')), 'yearMenu.' => array('yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}-3'), 'prioriCalc' => 'intval', 'thisYear' => '1'), 'count' => '5', 'format' => '%Y', 'year_stdWrap.' => array('wrap' => '<span>|</span>'))), 'search.' => array('searchResultAllTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_all.tmpl', 'searchResultEventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_event.tmpl', 'searchResultLocationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_location.tmpl', 'searchResultOrganizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_organizer.tmpl', 'searchEventFieldList' => 'title,organizer,location,description', 'searchLocationFieldList' => 'name', 'searchOrganizerFieldList' => 'name', 'searchUserFieldList' => 'name', 'searchGroupFieldList' => 'title', 'startRange' => '19700102', 'endRange' => '20300101', 'searchLinkUrl' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchLinkUrl.' => array('current' => '', 'value' => '|', 'required' => '1', 'typolink.' => array('useCacheHash' => '1', 'returnLast' => 'url')), 'searchAllLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchAllLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '|%%%SEARCH%%%'))))), 'defaultValues.' => array('query' => '', 'start_day' => 'now', 'end_day' => '+1 month'), 'startSearchAfterSubmit' => '1', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_event.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%QUERY_FOR%%% %%%EVENT%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'search_location.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_organizer.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'search_all.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%SEARCH_EVERYTHING%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'searchEvent' => 'TEXT', 'searchEvent.' => array('current' => '1', 'wrap' => '<h2>%%%EVENTS%%%</h2>|'), 'searchLocation' => 'TEXT', 'searchLocation.' => array('current' => '1', 'wrap' => '<h2>%%%LOCATION%%%</h2>|'), 'searchOrganizer' => 'TEXT', 'searchOrganizer.' => array('current' => '1', 'wrap' => '<h2>%%%ORGANIZER%%%</h2>|'))), 'module.' => array('locationloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_locationloader.tmpl'), 'organizerloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_organizerloader.tmpl')), 'autoFetchTextFields' => 'imagecaption,imagealttext,imagetitletext,attachmentcaption', 'autoFetchTextSplitValue.' => array('char' => '10'), 'lib.' => array('list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0')), '_CSS_DEFAULT_STYLE' => ' /* Styled by TYPO3 Content Rendering Group - ben@netcreators.com 2007 */ /* START new classes and id\'s */ #month-header { width: 100%; margin-bottom: 7px; } #month-header-prevnext { float: left; } #month-header-icons { float: right; text-align: right; } #month-header-icons IMG, #month-header-prevnext IMG , #month-footer IMG{ border: 0px solid; } #month-footer { width: 735px; margin-bottom: 7px; } #month-footer-header { text-align: center; } table.month-small { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-weeknums { border-right:1px solid #AAAAAA; background-color:#EFEFEF; } .month-weekdays { border-bottom:1px solid #AAAAAA; background-color:#EFEFEF; } .month-small a:link,.monthoff a:visited { color: #000000; } .month-small th, .month-small td { padding: 2px; width: 22px; font-size: 10px; text-align: right; } .month-small th{ text-align: center; } .month-large { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-large th, .month-large td { border: 1px solid #A1A5A9; } .month-large .weekday { background-color: #EEE; height: 12px; } .month-large .weeknum { background-color: #A1A5A9; width: 22px; } .month-large .day { height: 100px; width: 100px; vertical-align: top; text-align: left; } .month-large .daylink { font-weight: bold; } .month-large .day div { text-align: right; padding-right: 3px; } .month-large .dayNum { border-bottom: none; background-color: #E8EEF7; text-align: right; } .month-large .days td { border-top: none; } .month-large .alldays td { border-top: none; border-bottom: none; } .month-large .alldays .event div{ -moz-border-radius:2px 2px 2px 2px; } /*For the time being calendar-nav remains a table - no proper alternatives came to my mind yet - suggestions?*/ #calendar-nav { } #calendar-nav td { vertical-align: top; } #calendar-nav td#previous { width: 175px; } #calendar-nav td#list { width: 188px; } #calendar-nav td#legend { width: 188px; } #calendar-nav td#next { width: 175px; } #link-ics, #link-admin { width: 100%; text-align: center; } /* END new classes and id\'s */ .calborder { background-color: #fff; border: 1px solid #A1A5A9; } .tbll { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_l.gif) no-repeat; width: 8px } .tblbot { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_m.gif) repeat-x; width: 100% } .tblr { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_r.gif) no-repeat; width: 8px } .rowOn { background-color: #cfc; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOn2 { background-color: #cfc; border-top: 1px solid #fff; } .rowOff { background-color: #E1E8F1; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOff2 { background-color: #E1E8F1; border-top: 1px solid #fff; } .rowToday { background-color: #cff; border-top: 1px solid #fff; border-left: 1px solid #fff; } .tx-cal-controller .padd { /*XXXpadding: 2px;*/ } .eventbg_1 { background-color: #557CA3; padding: 2px; } .eventbg_2 { background-color: #53A062; padding: 2px; } .eventbg_3 { background-color: #E84F25; padding: 2px; } .eventbg_4 { background-color: #B257A2; padding: 2px; } .eventbg_5 { background-color: #D42020; padding: 2px; } .eventbg_6 { background-color: #B88F0B; padding: 2px; } .eventbg_7 { background-color: #73738C; padding: 2px; } #allday a { font-size: 9px; color: #fff; font-weight: 900; text-decoration: none; } #allday a:hover { text-decoration: underline; } .eventbg2_1 { background-color: #6699CC; border: 1px solid #557CA3; } .eventbg2_2 { background-color: #4FC464; border: 1px solid #53A062; } .eventbg2_3 { background-color: #FF6D3B; border: 1px solid #E84F25; } .eventbg2_4 { background-color: #EA62D4; border: 1px solid #B257A2; } .eventbg2_5 { background-color: #FF5E56; border: 1px solid #D42020; } .eventbg2_6 { background-color: #CCB21F; border: 1px solid #B88F0B; } .eventbg2_7 { background-color: #9292A1; border: 1px solid #73738C; } .dayborder { background-color: #fff; border-top: 1px solid #A1A5A9; } .dayborder2 { background-color: #fff; border-top: 1px dashed #ccc; } .tx-cal-controller .title { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); padding: 5px; } .tx-cal-controller .title h1 { font-family: Helvetica,sans-serif; font-size: 18px; color: #000; margin: 0; } .monthBack { background-color: #A1A5A9; } .monthSmallBasic { text-align: left; vertical-align: top; } .monthMediumBasic { height: 20px; width: 20px; text-align: left; vertical-align: top; } .monthOff, .monthOff a:link,.monthOff a:visited { color: #BBBBBB ! important; } .monthWeekend { background-color: #FFFFEF; } .monthCurrentWeek { background-color: #F2F9FF; } .month-small th, .month-medium th, .month-large th { font-weight: normal; } .month-small th a:link, .month-small th a:visited, .month-medium th a:link, .month-medium th a:visited, .month-large th a:link, .month-large th a:visited{ font-weight: bold; color: #000000; } .monthToday { background:#99AABB none repeat scroll 0% !important; border-color:#556677 rgb(170, 187, 204) rgb(170, 187, 204) rgb(85, 102, 119) !important; border-style:solid !important; border-width:1px !important; } .monthToday a:link, .monthToday a:visited { color:#FFFFFF; } .monthCorner { border-bottom: 1px solid #AAAAAA; } .monthSelected, .monthSelectedWeek { background-color: #AACCEE; } .current td, .days .current td, tr.current th { background-color: #F2F9FF; } .selected { background-color: #AACCEE; } .monthEventTop { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); border-top: 1px solid #A1A5A9; } .monthEventLine { border-right: 1px dotted #A1A5A9; } .medtitle { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); height: 20px; margin-top: 3px; font-weight: 900; } .yearreg { background-color: #fff; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearoff { background-color: #F2F2F2; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearon { background-color: #F2F9FF; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearmonth { background-color: #ccc; } .yearweek { background-color: #eee; width: 30px; font-size: 9px; font-weight: 900; text-align: center; height: 15px; } .eventborder { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/day_title.gif); border: 1px #006699 solid; } .dateback { background-color: #eee; } .weekborder { border-top: 1px dashed #A1A5A9; border-right: 1px solid #A1A5A9; } .weekborder2 { border-right: 1px solid #A1A5A9; } .timeborder { border-right: 2px solid #A1A5A9; border-top: 1px dashed #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .timeborder2 { border-right: 2px solid #A1A5A9; border-top: 1px solid #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback img{ border:none; } .tx-cal-controller .sideback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); } a.psf { text-decoration: none; } a.psf:link { color: #0066FF; } a.psf:visited { color: #0066FF; } a.psf:active { color: #3366CC; } a.psf:hover { color: #000099; text-decoration: underline; } a.ps2 { text-decoration: underline; } a.ps2:link { color: #0066FF; } a.ps2:visited { color: #0066FF; } a.ps2:active { color: #3366CC; } a.ps2:hover { color: #000099; } a.ps3 { text-decoration: none; } a.ps3:link { color: #000; } a.ps3:visited { color: #000; } a.ps3:active { color: #000; } a.ps3:hover { color: #000; text-decoration: underline; } a.ps { text-decoration: none; } a.ps:link { color: #fff; } a.ps:visited { color: #fff; } a.ps:active { color: #fff; } a.ps:hover { color: #fff; text-decoration: underline; } .legend_calendar { font-size: 9px; color: #000000; margin-top: 1em; margin-left: 1em; } .V9 { text-align:left ! important; font-size: 9px; color: #000000; } .V9 ul { margin-bottom: 0px; padding-bottom: 0px; margin-left: 20px; padding-left: 0px; } .V9 li { margin-bottom: 0px; padding-bottom: 0px; } .V10W { font-size: 10px; color: #FFFFFF; text-decoration: none; } .V9W { font-size: 9px; color: #FFFFFF; text-decoration: none; } .V10WB { font-size: 10px; color: #FFFFFF; font-weight: 900; } .V9G { font-size: 9px; color: #666666; } .V10 { font-size: 10px; color: #000000; } .V9BOLD { font-size: 9px; font-weight: 900; } .G10 { font-size: 11px; color: #0066FF; } .G10B { font-size: 11px; color: #000000; } .G10BOLD { font-size: 11px; font-weight: 900; } .G10G { font-size: 11px; color: #A1A5A9; } .V12 { font-size: 12px; color: #000000; } .tx-cal-controller .eventfont { font-size: 11px; color: #FFFFFF; } .tx-cal-controller .query_style { font-size: 11px; width: 156px; margin-bottom: 0; } .tx-cal-controller .search_style { font-size: 12px; width: 134px; margin-bottom: 0; } .tx-cal-controller .login_style { font-size: 11px; width: 80px; margin-bottom: 0; } .tx-cal-controller .bold a:link { font-weight: bold; } .tx-cal-controller .bold a:active { font-weight: bold; } .tx-cal-controller .bold a:visited { font-weight: bold; } /* Pagebrowser */ .tx-cal-controller .pagebrowser span { padding: 0 2px; } /*------------ Category style package: default (blue) - start ------------*/ .default_categoryheader, .default_catheader { background-color: #557CA3; } .V9G .default_categoryheader, .V9G .deafult_catheader { background-color: transparent !important; color: #557CA3 !important; } .default_categoryheader_bullet, .default_catheader_bullet { color: #557CA3; font-size: 13px; } .default_categoryheader_text, .default_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .default_categoryheader_legend_bullet, .default_catheader_legend_bullet { margin-left: 3px; } .default_categoryheader_legend_text, .default_catheader_legend_text { } .default_categoryheader_allday, .default_catheader_allday { text-align: center; background-color: #6699CC; } .default_categorybody, .default_catbody { background-color: #6699CC; border: 1px solid #557CA3; color: #fff; } .default_categorybody a:link, .default_catbody a:link { color: #fff; } /*------------ Category style package: default (blue) - end ------------*/ /*------------ Category style package: green - start ------------*/ .green_catheader, .green_catheader_allday { background-color: #53A062; } .V9G .green_catheader { background-color: transparent !important; color: #53A062 !important; } .green_catheader_bullet { color: #4FC464; font-size: 13px; } .green_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .green_catheader_legend_bullet { margin-left: 3px; } .green_catheader_bullet_text { } .green_catheader_allday { text-align: center; background-color: #4FC464; } .green_catbody { background-color: #4FC464; border: 1px solid #53A062; color: #fff; } .green_catbody a:link { color: #fff; } /*------------ Category style package: green - end ------------*/ /*------------ Category style package: orange - start ------------*/ .orange_catheader, .orange_catheader_allday { background-color: #E84F25; } .V9G .orange_catheader { background-color: transparent !important; color: #E84F25 !important; } .orange_catheader_bullet { color: #FF6D3B; font-size: 13px; } .orange_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .orange_catheader_legend_bullet { margin-left: 3px; } .orange_catheader_bullet_text { } .orange_catheader_allday { text-align: center; background-color: #FF6D3B; } .orange_catbody { background-color: #FF6D3B; border: 1px solid #E84F25; color: #fff; } .orange_catbody a:link { color: #fff; } /*------------ Category style package: orange - end ------------*/ /*------------ Category style package: pink - start ------------*/ .pink_catheader, .pink_catheader_allday { background-color: #B257A2; } .V9G .pink_catheader { background-color: transparent !important; color: #B257A2 !important; } .pink_catheader_bullet { color: #EA62D4; font-size: 13px; } .pink_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .pink_catheader_legend_bullet { margin-left: 3px; } .pink_catheader_bullet_text { } .pink_catheader_allday { text-align: center; background-color: #EA62D4; } .pink_catbody { background-color: #EA62D4; border: 1px solid #B257A2; color: #fff; } .pink_catbody a:link { color: #fff; } /*------------ Category style package: pink - end ------------*/ /*------------ Category style package: red - start ------------*/ .red_catheader, .red_catheader_allday { background-color: #D42020; } .V9G .red_catheader { background-color: transparent !important; color: #D42020 !important; } .red_catheader_bullet { color: #FF5E56; font-size: 13px; } .red_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .red_catheader_legend_bullet { margin-left: 3px; } .red_catheader_bullet_text { } .red_catheader_allday { text-align: center; background-color: #FF5E56; } .red_catbody { background-color: #FF5E56; border: 1px solid #D42020; color: #fff; } .red_catbody a:link { color: #fff; } /*------------ Category style package: red - end ------------*/ /*------------ Category style package: yellow - start ------------*/ .yellow_catheader, .yellow_catheader_allday { background-color: #B88F0B; } .V9G .yellow_catheader { background-color: transparent !important; color: #B88F0B !important; } .yellow_catheader_bullet { color: #CCB21F; font-size: 13px; } .yellow_catheader_text{ color: #000000; font-size: 11px; margin-left: 3px; } .yellow_catheader_legend_bullet { margin-left: 3px; } .yellow_catheader_bullet_text { } .yellow_catheader_allday { text-align: center; background-color: #CCB21F; } .yellow_catbody { background-color: #CCB21F; border: 1px solid #B88F0B; color: #fff; } .yellow_catbody a:link { color: #fff; } /*------------ Category style package: yellow - end ------------*/ /*------------ Category style package: grey - start ------------*/ .grey_catheader, .grey_catheader_allday { background-color: #73738C; } .V9G .grey_catheader { background-color: transparent !important; color: #73738C !important; } .grey_catheader_bullet { color: #9292A1; font-size: 13px; } .grey_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .grey_catheader_legend_bullet { margin-left: 3px; } .grey_catheader_bullet_text { } .grey_catheader_allday { text-align: center; background-color: #9292A1; } .grey_catbody { background-color: #9292A1; border: 1px solid #73738C; color: #fff; } .grey_catbody a:link { color: #fff; } /*------------ Category style package: grey - end ------------*/ .tx-cal-controller .bold { /*font-weight: bold;*/ } .refresh_calendar { margin-right: 5px; } /* Start of moving stuff from the templat into this file */ .tx-cal-controller .weekview { margin: 0 auto; } .tx-cal-controller .weekview .nextweek_arrow, .tx-cal-controller .weekview .previousweek_arrow { width: 16px; height: 20px; border: 0px; text-align: left; } .previsousweek_arrow { text-align: right; } /*------------- free & busy styles ----------*/ .fnb_header { background-color: #444444; } .fnb_body { background-color: #888888; border: 1px solid #999999; color: #fff; } /*------------- list styles ------------*/ .tx-cal-controller .even { background-color: #eeeeee; } .tx-cal-controller .treelevel0 { } .tx-cal-controller .treelevel1 { margin-left:20px; } .tx-cal-controller .treelevel2 { margin-left:30px; } .tx-cal-controller label { display:block; float:left; margin-bottom: 0px; padding-right:1em; text-align:right; width:120px; } .tx-cal-controller fieldset div { clear:left; } .tx-cal-controller .noborder { border: none; } .tx-cal-controller .search-result { list-style: none; margin-left: 0px; padding-left: 0px; } .tx-cal-controller .search-result li { padding-bottom: 1em; } .tx-cal-controller .search_result li .even { background-color: #EEEEEE; } .tx_cal_controller img .mouse_pointer { cursor:pointer; }/* #cal_general,#cal_location,#cal_organizer,#cal_freq,#cal_exception,#cal_files,#cal_notify { height:210px; overflow:auto; padding:8px; }*/ .x-form-label-top .x-form-item label { width:70px ! important; } .x-form-invalid, textarea.x-form-invalid { background: none ! important; } #cal_event_description { margin-top:10px; } .admin_link { width:100%; text-align:center; } .ics_link { width:100%; text-align:center; } .tx-cal-controller .cal_required { color: red; } .tx-cal-controller .constrain { color: red; font-weight:bold; } #editorWrap1 textarea {display: block} /*Credits: By Santosh Setty (http://webdesigninfo.wordpress.com) */ /*Posted to: Dynamic Drive CSS Library (http://www.dynamicdrive.com/style/) */ #tx_cal_controller_create_element { width:540px; } .basictab ul{ margin: 4px; padding: 3px 0; margin-left: 0; font: bold 12px Verdana; border-bottom: 1px solid gray; list-style-type: none; text-align: left; /*set to left, center, or right to align the menu as desired*/ } .basictab li{ display: inline; margin: 0; } .basictab li a{ text-decoration: none; padding: 3px 7px; margin-right: 3px; border: 1px solid gray; border-bottom: none; background-color: #6699CC; color: #FFFFFF; } .basictab li a:visited{ color: #2d2b2b; } .basictab li a:hover, .basictab li a.current{ background-color: #557CA3; color: #FFFFFF; } .basictab li a:active{ color: #000000; } .tabcontainer{ clear: left; width:95%; /*width of 2nd level sub menus*/ height:1.5em; /*height of 2nd level sub menus. Set to largest\'s sub menu\'s height to avoid jittering.*/ } .tabcontent{ display:none; } #tx_cal_controller_create_element input[type="text"]:not([size]) { width: 6em; /* Desired width of input field */ } #tx_cal_controller_create_element .treelevel0{ display:block; margin-left: 70px; } #tx_cal_controller_create_element p { margin: 7px; } #tx_cal_controller_create_element .notify, #tx_cal_controller_create_element .shared, #tx_cal_controller_create_element .exception { display:block; margin-left: 140px; } #sc1 label { width:50px; } #allday { width:10px; } #category_tree { float:right; width:200px; } #until label, #by_day label, #by_monthday label, #by_month label{ margin-left: 50px; } #by_month label, #by_monthday label{ width: 230px; } #categoryEntries { height:80px; overflow:auto; } .reminderOffset { width: 2em !important; } ')))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 6015
                        $classObj,
                        $parts[1]
                    ], [
                        $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\\Cal\\Controller\\Controller->main', array('userFunc' => 'TYPO3\\CMS\\Cal\\Controller\\Controller->main', 'pidList' => '18,23', 'sessionPiVars' => 'page_id', 'calendarName' => 'My Calendar', 'allowSubscribe' => '1', 'subscribeFeUser' => '0', 'subscribeWithCaptcha' => '0', 'additionalWrapperClasses' => '', 'noWrapInBaseClass' => '0', 'dateConfig.' => array('dayPosition' => '2', 'monthPosition' => '1', 'yearPosition' => '0', 'splitSymbol' => '-', 'monthAbbreviationLength' => '3', 'weekdayAbbreviationLength' => '3'), 'dateParserConf.' => array('USmode' => '0'), 'date_stdWrap.' => array(), 'showRecordsWithoutDefaultTranslation' => '1', 'view.' => array('allowedViews' => '', 'customViews' => '', 'noViewFoundHelpText' => 'Controller function not found:', 'category' => '', 'calendar' => '', 'imagePath' => 'EXT:cal/Resources/Private/Templates/v1/img', 'javascriptPath' => 'EXT:cal/Resources/Private/Templates/v1/js', 'weekStartDay' => 'Monday', 'dayLinkTarget' => 'day', 'weekLinkTarget' => 'week', 'monthLinkTarget' => 'month', 'yearLinkTarget' => 'year', 'listLinkTarget' => 'list', 'locationLinkTarget' => 'location', 'organizerLinkTarget' => 'organizer', 'startLinkRange' => '-5 month', 'endLinkRange' => '+5 month', 'required' => '<span class="cal_required">*</span>', 'defaultLinkSetup' => 'TEXT', 'defaultLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1')), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'defaultViewLinkSetup' => 'TEXT', 'defaultViewLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'view', 'wrap' => '%%%|_VIEW%%%', 'case' => 'upper', 'required' => '1')))), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'backLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'showEditableEventsOnly' => '0', 'event.' => array('eventViewPid' => '', 'createEventViewPid' => '', 'editEventViewPid' => '', 'deleteEventViewPid' => '', 'eventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/event.tmpl', 'eventModelTemplate' => 'fileadmin/templates/cal_event_model.tmpl', 'subscriptionManagerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/subscription_manager.tmpl', 'substitutePageTitle' => '1', 'isPreview' => '0', 'categoryLink_stdWrap.' => array('wrap' => ''), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div><br />|</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>|</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'notify.' => array('subscriptionViewPid' => '', 'confirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyConfirm.tmpl', 'confirmTitle' => 'Please confirm the event monitoring on www.abc.com', 'unsubscribeConfirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyUnsubscribeConfirm.tmpl', 'unsubscribeConfirmTitle' => 'Please confirm the event monitoring stop on www.abc.com', 'all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'remind' => '1', 'remind.' => array('time' => '30', 'all.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/remind.tmpl', 'emailTitle' => 'Reminder for event: ###TITLE###'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'meeting.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/invite.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/inviteOnChange.tmpl', 'statusViewPid' => '', 'managerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/meetingManager.tmpl', 'lookingAhead' => '300000;'), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'title.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'notification.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'todo.' => array('todoInlineModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_inline_model.tmpl', 'todoSeparateModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_separate_model.tmpl', 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'location.' => array('locationViewPid' => '', 'createLocationViewPid' => '', 'editLocationViewPid' => '', 'deleteLocationViewPid' => '', 'locationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location.tmpl', 'locationModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location_model.tmpl', 'locationModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/location_partner_model.tmpl', 'locationModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/location_address_model.tmpl', 'maxDate' => '20200101', 'minDate' => '00000001', 'maxRecurringEvents' => '', 'substitutePageTitle' => '1', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'organizer.' => array('organizerViewPid' => '', 'createOrganizerViewPid' => '', 'editOrganizerViewPid' => '', 'deleteOrganizerViewPid' => '', 'organizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer.tmpl', 'organizerModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer_model.tmpl', 'organizerModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/organizer_partner_model.tmpl', 'organizerModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/organizer_address_model.tmpl', 'organizerModelTemplate4FEUser' => 'EXT:cal/Resources/Private/Templates/v1/organizer_feuser_model.tmpl', 'maxRecurringEvents' => '', 'maxDate' => '20200101', 'minDate' => '00000001', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'calendar.' => array('createCalendarViewPid' => '', 'editCalendarViewPid' => '', 'deleteCalendarViewPid' => '', 'calendar.' => array('addIcon' => '<img src="###IMG_PATH###/create_calendar.gif" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_CALENDAR%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_CALENDAR%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_CALENDAR%%%'))))))), 'category.' => array('createCategoryViewPid' => '', 'categoryViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'editCategoryViewPid' => '', 'deleteCategoryViewPid' => '', 'notify.' => array('all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted')), 'category.' => array('defaultHeaderStyle' => 'default_catheader', 'defaultBodyStyle' => 'default_catbody'), 'tree.' => array('calendar' => '', 'category' => '', 'calendarTitle' => 'TEXT', 'calendarTitle.' => array(), 'rootElement' => 'TEXT', 'rootElement.' => array('wrap' => '<table class="treelevel0"><tr><td>|</td></tr></table>'), 'selector' => 'TEXT', 'selector.' => array('wrap' => '<input type="checkbox" name="tx_cal_controller[category][]" value="###UID###" | />'), 'element' => '<span class="###HEADERSTYLE###_bullet ###HEADERSTYLE###_legend_bullet" >&bull;</span><span class="###HEADERSTYLE###_text">###TITLE###</span>', 'emptyElement' => '<br/><br/>', 'subElement' => '<br /><table class="treelevel###LEVEL###" id="treelevel###UID###">', 'subElement_wrap.' => array('wrap' => '<tr><td>|</td></tr>'), 'subElement_pre' => '</table>', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'alternativeSelect' => 'CASE', 'alternativeSelect.' => array('key.' => array('data' => 'field:cur'), 'default' => 'TEXT', 'default.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&tx_cal_controller[category]={field:uid}', 'additionalParams.' => array('insertData' => '1'), 'wrap' => '<li>|</li>')), 'TEXT', '1.' => array('current' => '1', 'wrap' => '<li class="cur"><em>|</em></li>')))), 'day.' => array('dayViewPid' => '', 'dayViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" width="16" height="20" border="0" align="right" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" width="16" height="20" border="0" align="left" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'dayStart' => '0700', 'dayEnd' => '2300', 'dynamic' => '0', 'gridLength' => '15', 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dayTemplate' => 'EXT:cal/Resources/Private/Templates/v1/day.tmpl', 'dayTimeCell' => '<tr><td rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height=\'%s\'></td>', 'dayTimeCell2' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'dayEventPre' => '<td rowspan="%s" align="left" valign="top"', 'dayEventPost' => '</td>', 'classDayborder' => 'class="dayborder"', 'classDayborder2' => 'class="dayborder2"', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'dayFinishRow' => '</tr>', 'dateFormatWeekList' => '%A, %b %d', 'dateFormatDay' => '%a, %b %d', 'timeFormatDay' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_day_starttime', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'week.' => array('weekViewPid' => '', 'weekViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_WEEK%%%'))))), 'prevWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_WEEK%%%'))))), 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" alt="%%%NEXT%%%" class="previousweek_arrow" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" alt="%%%PREV%%%" class="nextweek_arrow" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dynamic' => '0', 'weekTemplate' => 'EXT:cal/Resources/Private/Templates/v1/week.tmpl', 'weekDisplayFullHour' => '<tr><td colspan="4" rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekDisplayInbetween' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekday_stdWrap.' => array('wrap' => '<span class="V9BOLD">|</span>'), 'classWeekborder' => 'class="weekborder"', 'weekEventPre' => '<td rowspan="%s" align="left" valign="top"', 'weekEventPost' => '</td>', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'weekFinishRow' => '</tr>', 'dateFormatWeekList' => '%a, %b %d', 'dateFormatWeek' => '%B %d', 'timeFormatWeek' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_week_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_week_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'month.' => array('monthViewPid' => '', 'monthViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '3024000', 'endPointCorrection' => '3024000', 'monthTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month.tmpl', 'monthSmallTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_small.tmpl', 'monthMediumTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_medium.tmpl', 'monthLargeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_large.tmpl', 'monthMiniTemplate' => '###MONTH_SMALL|+0###', 'monthMakeMiniCal' => '0', 'navigation' => '1', 'horizontalSidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/calendar_nav.tmpl', 'showListInMonthView' => '0', 'useListEventRenderSettingsView' => 'list', 'dateFormatMonth' => '%B', 'dateFormatDay' => '%d', 'weekdayFormatSmallMonth' => '%a', 'weekdayLengthSmallMonth' => '2', 'weekdayFormatMediumMonth' => '%a', 'weekdayLengthMediumMonth' => '0', 'weekdayFormatLargeMonth' => '%A', 'weekdayLengthLargeMonth' => '0', 'smallLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'largeLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'nextMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_MONTH%%%'))))), 'prevMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_MONTH%%%'))))), 'monthSmallStyle' => 'monthSmallBasic', 'monthMediumStyle' => 'monthMediumBasic', 'monthLargeStyle' => 'monthLargeBasic', 'monthOffStyle' => 'monthOff', 'monthSelectedStyle' => 'monthSelected', 'monthSelectedWeekStyle' => 'monthSelectedWeek', 'monthDaySelectedWeekStyle' => 'monthSelectedWeek', 'monthWeekendStyle' => 'monthWeekend', 'monthTodayStyle' => 'monthToday', 'monthCurrentWeekStyle' => 'monthCurrentWeek', 'monthDayCurrentWeekStyle' => 'monthCurrentWeek', 'monthCornerStyle' => 'monthCorner', 'monthDayOfWeekStyle' => 'cal_day%s', 'eventDayStyle' => 'eventDay', 'monthWeekWithEventStyle' => 'monthWeekWithEvent', 'displayDate' => 'TEXT', 'displayDate.' => array('current' => '1', 'strftime' => '%B %Y'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|')), 'year.' => array('yearViewPid' => '', 'yearViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '518400', 'endPointCorrection' => '518400', 'yearTemplate' => 'EXT:cal/Resources/Private/Templates/v1/year.tmpl', 'nextYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_YEAR%%%'))))), 'prevYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_YEAR%%%'))))), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'dontShowOldEvents' => '0'), 'list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => '01 01 2007', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '-&nbsp; |'), 'teaser' => '< tt_content.text.20', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'stripHtml' => '0', 'field' => 'teaser'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'subscription.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))))), 'ics.' => array('showIcsLinks' => '{$plugin.tx_cal_controller.view.ics.showIcsLinks}', 'link_wrap' => '<div class="ics_link">%s</div>', 'icsViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1'), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCalendarLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCalendarLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCategoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCategoryLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsTemplate' => '{$plugin.tx_cal_controller.view.ics.icsTemplate}', 'icsListTemplate' => '{$plugin.tx_cal_controller.view.ics.icsListTemplate}', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'single_ics.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'admin.' => array('adminTemplate' => 'EXT:cal/Resources/Private/Templates/v1/admin.tmpl', 'adminViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'adminViewLink.' => array('current' => '0', 'value' => '<img src="###IMG_PATH###/config_calendar.gif" border="0" style="margin:2px;"/>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%ADMINISTRATION_VIEW%%%')))), 'outerWrap' => '<div class="admin_link">|</div>')), 'freeAndBusy.' => array('enable' => '0', 'headerStyle' => 'fnb_header', 'bodyStyle' => 'fnb_body', 'eventTitle' => 'Busy', 'defaultCalendarUid' => '0'), 'other.' => array('showLogin' => '0', 'loginPageId' => '', 'userFolderId' => '', 'showSearch' => '0', 'showGoto' => '0', 'showCategorySelection' => '0', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'showCalendarSelection' => '0', 'optionString' => '<option value="%s">%s</option>', 'showTomorrowEvents' => '0', 'tomorrowsEvents' => 'TEXT', 'tomorrowsEvents.' => array('current' => '1', 'wrap' => '|<br />'), 'legend_stdWrap.' => array('wrap' => '|<div style="text-align:right;margin-left:10px;"></div>'), 'showTodos' => '0', 'showJumps' => '0', 'dateFormatWeekJump' => '%b %d', 'listWeeks_stdWrap.' => array('wrap' => '<option value="|" >###WEEK1### - ###WEEK2###</option>'), 'listWeeksSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###WEEK1### - ###WEEK2###</option>'), 'listWeek_onlyShowCurrentYear' => '0', 'listWeek_totalWeekCount' => '20', 'listWeek_previousWeekCount' => '5', 'dateFormatMonthJump' => '%B %Y', 'listMonth_stdWrap.' => array('wrap' => '<option value="|" >###MONTH###</option>'), 'listMonthSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###MONTH###</option>'), 'listMonth_onlyShowCurrentYear' => '0', 'listMonth_totalMonthCount' => '12', 'listMonth_previousMonthCount' => '3', 'listMonth_referenceToday' => '1', 'dateFormatYearJump' => '%Y', 'listYear_stdWrap.' => array('wrap' => '<option value="|" >###YEAR###</option>'), 'listYearSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###YEAR###</option>'), 'listYear_totalYearCount' => '3', 'listYear_previousYearCount' => '1', 'sidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/sidebar.tmpl', 'searchBoxTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_box.tmpl', 'monthMenu.' => array('monthStart' => 'TEXT', 'monthStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:m}'), 'prioriCalc' => 'intval', 'thisMonth' => '1'), 'yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}'), 'prioriCalc' => 'intval'), 'count' => '5', 'format' => '%b %Y', 'month_stdWrap.' => array('wrap' => '<span>|</span>')), 'yearMenu.' => array('yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}-3'), 'prioriCalc' => 'intval', 'thisYear' => '1'), 'count' => '5', 'format' => '%Y', 'year_stdWrap.' => array('wrap' => '<span>|</span>'))), 'search.' => array('searchResultAllTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_all.tmpl', 'searchResultEventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_event.tmpl', 'searchResultLocationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_location.tmpl', 'searchResultOrganizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_organizer.tmpl', 'searchEventFieldList' => 'title,organizer,location,description', 'searchLocationFieldList' => 'name', 'searchOrganizerFieldList' => 'name', 'searchUserFieldList' => 'name', 'searchGroupFieldList' => 'title', 'startRange' => '19700102', 'endRange' => '20300101', 'searchLinkUrl' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchLinkUrl.' => array('current' => '', 'value' => '|', 'required' => '1', 'typolink.' => array('useCacheHash' => '1', 'returnLast' => 'url')), 'searchAllLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchAllLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '|%%%SEARCH%%%'))))), 'defaultValues.' => array('query' => '', 'start_day' => 'now', 'end_day' => '+1 month'), 'startSearchAfterSubmit' => '1', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_event.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%QUERY_FOR%%% %%%EVENT%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'search_location.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_organizer.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'search_all.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%SEARCH_EVERYTHING%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'searchEvent' => 'TEXT', 'searchEvent.' => array('current' => '1', 'wrap' => '<h2>%%%EVENTS%%%</h2>|'), 'searchLocation' => 'TEXT', 'searchLocation.' => array('current' => '1', 'wrap' => '<h2>%%%LOCATION%%%</h2>|'), 'searchOrganizer' => 'TEXT', 'searchOrganizer.' => array('current' => '1', 'wrap' => '<h2>%%%ORGANIZER%%%</h2>|'))), 'module.' => array('locationloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_locationloader.tmpl'), 'organizerloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_organizerloader.tmpl')), 'autoFetchTextFields' => 'imagecaption,imagealttext,imagetitletext,attachmentcaption', 'autoFetchTextSplitValue.' => array('char' => '10'), 'lib.' => array('list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0')), '_CSS_DEFAULT_STYLE' => ' /* Styled by TYPO3 Content Rendering Group - ben@netcreators.com 2007 */ /* START new classes and id\'s */ #month-header { width: 100%; margin-bottom: 7px; } #month-header-prevnext { float: left; } #month-header-icons { float: right; text-align: right; } #month-header-icons IMG, #month-header-prevnext IMG , #month-footer IMG{ border: 0px solid; } #month-footer { width: 735px; margin-bottom: 7px; } #month-footer-header { text-align: center; } table.month-small { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-weeknums { border-right:1px solid #AAAAAA; background-color:#EFEFEF; } .month-weekdays { border-bottom:1px solid #AAAAAA; background-color:#EFEFEF; } .month-small a:link,.monthoff a:visited { color: #000000; } .month-small th, .month-small td { padding: 2px; width: 22px; font-size: 10px; text-align: right; } .month-small th{ text-align: center; } .month-large { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-large th, .month-large td { border: 1px solid #A1A5A9; } .month-large .weekday { background-color: #EEE; height: 12px; } .month-large .weeknum { background-color: #A1A5A9; width: 22px; } .month-large .day { height: 100px; width: 100px; vertical-align: top; text-align: left; } .month-large .daylink { font-weight: bold; } .month-large .day div { text-align: right; padding-right: 3px; } .month-large .dayNum { border-bottom: none; background-color: #E8EEF7; text-align: right; } .month-large .days td { border-top: none; } .month-large .alldays td { border-top: none; border-bottom: none; } .month-large .alldays .event div{ -moz-border-radius:2px 2px 2px 2px; } /*For the time being calendar-nav remains a table - no proper alternatives came to my mind yet - suggestions?*/ #calendar-nav { } #calendar-nav td { vertical-align: top; } #calendar-nav td#previous { width: 175px; } #calendar-nav td#list { width: 188px; } #calendar-nav td#legend { width: 188px; } #calendar-nav td#next { width: 175px; } #link-ics, #link-admin { width: 100%; text-align: center; } /* END new classes and id\'s */ .calborder { background-color: #fff; border: 1px solid #A1A5A9; } .tbll { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_l.gif) no-repeat; width: 8px } .tblbot { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_m.gif) repeat-x; width: 100% } .tblr { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_r.gif) no-repeat; width: 8px } .rowOn { background-color: #cfc; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOn2 { background-color: #cfc; border-top: 1px solid #fff; } .rowOff { background-color: #E1E8F1; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOff2 { background-color: #E1E8F1; border-top: 1px solid #fff; } .rowToday { background-color: #cff; border-top: 1px solid #fff; border-left: 1px solid #fff; } .tx-cal-controller .padd { /*XXXpadding: 2px;*/ } .eventbg_1 { background-color: #557CA3; padding: 2px; } .eventbg_2 { background-color: #53A062; padding: 2px; } .eventbg_3 { background-color: #E84F25; padding: 2px; } .eventbg_4 { background-color: #B257A2; padding: 2px; } .eventbg_5 { background-color: #D42020; padding: 2px; } .eventbg_6 { background-color: #B88F0B; padding: 2px; } .eventbg_7 { background-color: #73738C; padding: 2px; } #allday a { font-size: 9px; color: #fff; font-weight: 900; text-decoration: none; } #allday a:hover { text-decoration: underline; } .eventbg2_1 { background-color: #6699CC; border: 1px solid #557CA3; } .eventbg2_2 { background-color: #4FC464; border: 1px solid #53A062; } .eventbg2_3 { background-color: #FF6D3B; border: 1px solid #E84F25; } .eventbg2_4 { background-color: #EA62D4; border: 1px solid #B257A2; } .eventbg2_5 { background-color: #FF5E56; border: 1px solid #D42020; } .eventbg2_6 { background-color: #CCB21F; border: 1px solid #B88F0B; } .eventbg2_7 { background-color: #9292A1; border: 1px solid #73738C; } .dayborder { background-color: #fff; border-top: 1px solid #A1A5A9; } .dayborder2 { background-color: #fff; border-top: 1px dashed #ccc; } .tx-cal-controller .title { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); padding: 5px; } .tx-cal-controller .title h1 { font-family: Helvetica,sans-serif; font-size: 18px; color: #000; margin: 0; } .monthBack { background-color: #A1A5A9; } .monthSmallBasic { text-align: left; vertical-align: top; } .monthMediumBasic { height: 20px; width: 20px; text-align: left; vertical-align: top; } .monthOff, .monthOff a:link,.monthOff a:visited { color: #BBBBBB ! important; } .monthWeekend { background-color: #FFFFEF; } .monthCurrentWeek { background-color: #F2F9FF; } .month-small th, .month-medium th, .month-large th { font-weight: normal; } .month-small th a:link, .month-small th a:visited, .month-medium th a:link, .month-medium th a:visited, .month-large th a:link, .month-large th a:visited{ font-weight: bold; color: #000000; } .monthToday { background:#99AABB none repeat scroll 0% !important; border-color:#556677 rgb(170, 187, 204) rgb(170, 187, 204) rgb(85, 102, 119) !important; border-style:solid !important; border-width:1px !important; } .monthToday a:link, .monthToday a:visited { color:#FFFFFF; } .monthCorner { border-bottom: 1px solid #AAAAAA; } .monthSelected, .monthSelectedWeek { background-color: #AACCEE; } .current td, .days .current td, tr.current th { background-color: #F2F9FF; } .selected { background-color: #AACCEE; } .monthEventTop { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); border-top: 1px solid #A1A5A9; } .monthEventLine { border-right: 1px dotted #A1A5A9; } .medtitle { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); height: 20px; margin-top: 3px; font-weight: 900; } .yearreg { background-color: #fff; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearoff { background-color: #F2F2F2; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearon { background-color: #F2F9FF; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearmonth { background-color: #ccc; } .yearweek { background-color: #eee; width: 30px; font-size: 9px; font-weight: 900; text-align: center; height: 15px; } .eventborder { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/day_title.gif); border: 1px #006699 solid; } .dateback { background-color: #eee; } .weekborder { border-top: 1px dashed #A1A5A9; border-right: 1px solid #A1A5A9; } .weekborder2 { border-right: 1px solid #A1A5A9; } .timeborder { border-right: 2px solid #A1A5A9; border-top: 1px dashed #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .timeborder2 { border-right: 2px solid #A1A5A9; border-top: 1px solid #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback img{ border:none; } .tx-cal-controller .sideback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); } a.psf { text-decoration: none; } a.psf:link { color: #0066FF; } a.psf:visited { color: #0066FF; } a.psf:active { color: #3366CC; } a.psf:hover { color: #000099; text-decoration: underline; } a.ps2 { text-decoration: underline; } a.ps2:link { color: #0066FF; } a.ps2:visited { color: #0066FF; } a.ps2:active { color: #3366CC; } a.ps2:hover { color: #000099; } a.ps3 { text-decoration: none; } a.ps3:link { color: #000; } a.ps3:visited { color: #000; } a.ps3:active { color: #000; } a.ps3:hover { color: #000; text-decoration: underline; } a.ps { text-decoration: none; } a.ps:link { color: #fff; } a.ps:visited { color: #fff; } a.ps:active { color: #fff; } a.ps:hover { color: #fff; text-decoration: underline; } .legend_calendar { font-size: 9px; color: #000000; margin-top: 1em; margin-left: 1em; } .V9 { text-align:left ! important; font-size: 9px; color: #000000; } .V9 ul { margin-bottom: 0px; padding-bottom: 0px; margin-left: 20px; padding-left: 0px; } .V9 li { margin-bottom: 0px; padding-bottom: 0px; } .V10W { font-size: 10px; color: #FFFFFF; text-decoration: none; } .V9W { font-size: 9px; color: #FFFFFF; text-decoration: none; } .V10WB { font-size: 10px; color: #FFFFFF; font-weight: 900; } .V9G { font-size: 9px; color: #666666; } .V10 { font-size: 10px; color: #000000; } .V9BOLD { font-size: 9px; font-weight: 900; } .G10 { font-size: 11px; color: #0066FF; } .G10B { font-size: 11px; color: #000000; } .G10BOLD { font-size: 11px; font-weight: 900; } .G10G { font-size: 11px; color: #A1A5A9; } .V12 { font-size: 12px; color: #000000; } .tx-cal-controller .eventfont { font-size: 11px; color: #FFFFFF; } .tx-cal-controller .query_style { font-size: 11px; width: 156px; margin-bottom: 0; } .tx-cal-controller .search_style { font-size: 12px; width: 134px; margin-bottom: 0; } .tx-cal-controller .login_style { font-size: 11px; width: 80px; margin-bottom: 0; } .tx-cal-controller .bold a:link { font-weight: bold; } .tx-cal-controller .bold a:active { font-weight: bold; } .tx-cal-controller .bold a:visited { font-weight: bold; } /* Pagebrowser */ .tx-cal-controller .pagebrowser span { padding: 0 2px; } /*------------ Category style package: default (blue) - start ------------*/ .default_categoryheader, .default_catheader { background-color: #557CA3; } .V9G .default_categoryheader, .V9G .deafult_catheader { background-color: transparent !important; color: #557CA3 !important; } .default_categoryheader_bullet, .default_catheader_bullet { color: #557CA3; font-size: 13px; } .default_categoryheader_text, .default_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .default_categoryheader_legend_bullet, .default_catheader_legend_bullet { margin-left: 3px; } .default_categoryheader_legend_text, .default_catheader_legend_text { } .default_categoryheader_allday, .default_catheader_allday { text-align: center; background-color: #6699CC; } .default_categorybody, .default_catbody { background-color: #6699CC; border: 1px solid #557CA3; color: #fff; } .default_categorybody a:link, .default_catbody a:link { color: #fff; } /*------------ Category style package: default (blue) - end ------------*/ /*------------ Category style package: green - start ------------*/ .green_catheader, .green_catheader_allday { background-color: #53A062; } .V9G .green_catheader { background-color: transparent !important; color: #53A062 !important; } .green_catheader_bullet { color: #4FC464; font-size: 13px; } .green_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .green_catheader_legend_bullet { margin-left: 3px; } .green_catheader_bullet_text { } .green_catheader_allday { text-align: center; background-color: #4FC464; } .green_catbody { background-color: #4FC464; border: 1px solid #53A062; color: #fff; } .green_catbody a:link { color: #fff; } /*------------ Category style package: green - end ------------*/ /*------------ Category style package: orange - start ------------*/ .orange_catheader, .orange_catheader_allday { background-color: #E84F25; } .V9G .orange_catheader { background-color: transparent !important; color: #E84F25 !important; } .orange_catheader_bullet { color: #FF6D3B; font-size: 13px; } .orange_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .orange_catheader_legend_bullet { margin-left: 3px; } .orange_catheader_bullet_text { } .orange_catheader_allday { text-align: center; background-color: #FF6D3B; } .orange_catbody { background-color: #FF6D3B; border: 1px solid #E84F25; color: #fff; } .orange_catbody a:link { color: #fff; } /*------------ Category style package: orange - end ------------*/ /*------------ Category style package: pink - start ------------*/ .pink_catheader, .pink_catheader_allday { background-color: #B257A2; } .V9G .pink_catheader { background-color: transparent !important; color: #B257A2 !important; } .pink_catheader_bullet { color: #EA62D4; font-size: 13px; } .pink_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .pink_catheader_legend_bullet { margin-left: 3px; } .pink_catheader_bullet_text { } .pink_catheader_allday { text-align: center; background-color: #EA62D4; } .pink_catbody { background-color: #EA62D4; border: 1px solid #B257A2; color: #fff; } .pink_catbody a:link { color: #fff; } /*------------ Category style package: pink - end ------------*/ /*------------ Category style package: red - start ------------*/ .red_catheader, .red_catheader_allday { background-color: #D42020; } .V9G .red_catheader { background-color: transparent !important; color: #D42020 !important; } .red_catheader_bullet { color: #FF5E56; font-size: 13px; } .red_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .red_catheader_legend_bullet { margin-left: 3px; } .red_catheader_bullet_text { } .red_catheader_allday { text-align: center; background-color: #FF5E56; } .red_catbody { background-color: #FF5E56; border: 1px solid #D42020; color: #fff; } .red_catbody a:link { color: #fff; } /*------------ Category style package: red - end ------------*/ /*------------ Category style package: yellow - start ------------*/ .yellow_catheader, .yellow_catheader_allday { background-color: #B88F0B; } .V9G .yellow_catheader { background-color: transparent !important; color: #B88F0B !important; } .yellow_catheader_bullet { color: #CCB21F; font-size: 13px; } .yellow_catheader_text{ color: #000000; font-size: 11px; margin-left: 3px; } .yellow_catheader_legend_bullet { margin-left: 3px; } .yellow_catheader_bullet_text { } .yellow_catheader_allday { text-align: center; background-color: #CCB21F; } .yellow_catbody { background-color: #CCB21F; border: 1px solid #B88F0B; color: #fff; } .yellow_catbody a:link { color: #fff; } /*------------ Category style package: yellow - end ------------*/ /*------------ Category style package: grey - start ------------*/ .grey_catheader, .grey_catheader_allday { background-color: #73738C; } .V9G .grey_catheader { background-color: transparent !important; color: #73738C !important; } .grey_catheader_bullet { color: #9292A1; font-size: 13px; } .grey_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .grey_catheader_legend_bullet { margin-left: 3px; } .grey_catheader_bullet_text { } .grey_catheader_allday { text-align: center; background-color: #9292A1; } .grey_catbody { background-color: #9292A1; border: 1px solid #73738C; color: #fff; } .grey_catbody a:link { color: #fff; } /*------------ Category style package: grey - end ------------*/ .tx-cal-controller .bold { /*font-weight: bold;*/ } .refresh_calendar { margin-right: 5px; } /* Start of moving stuff from the templat into this file */ .tx-cal-controller .weekview { margin: 0 auto; } .tx-cal-controller .weekview .nextweek_arrow, .tx-cal-controller .weekview .previousweek_arrow { width: 16px; height: 20px; border: 0px; text-align: left; } .previsousweek_arrow { text-align: right; } /*------------- free & busy styles ----------*/ .fnb_header { background-color: #444444; } .fnb_body { background-color: #888888; border: 1px solid #999999; color: #fff; } /*------------- list styles ------------*/ .tx-cal-controller .even { background-color: #eeeeee; } .tx-cal-controller .treelevel0 { } .tx-cal-controller .treelevel1 { margin-left:20px; } .tx-cal-controller .treelevel2 { margin-left:30px; } .tx-cal-controller label { display:block; float:left; margin-bottom: 0px; padding-right:1em; text-align:right; width:120px; } .tx-cal-controller fieldset div { clear:left; } .tx-cal-controller .noborder { border: none; } .tx-cal-controller .search-result { list-style: none; margin-left: 0px; padding-left: 0px; } .tx-cal-controller .search-result li { padding-bottom: 1em; } .tx-cal-controller .search_result li .even { background-color: #EEEEEE; } .tx_cal_controller img .mouse_pointer { cursor:pointer; }/* #cal_general,#cal_location,#cal_organizer,#cal_freq,#cal_exception,#cal_files,#cal_notify { height:210px; overflow:auto; padding:8px; }*/ .x-form-label-top .x-form-item label { width:70px ! important; } .x-form-invalid, textarea.x-form-invalid { background: none ! important; } #cal_event_description { margin-top:10px; } .admin_link { width:100%; text-align:center; } .ics_link { width:100%; text-align:center; } .tx-cal-controller .cal_required { color: red; } .tx-cal-controller .constrain { color: red; font-weight:bold; } #editorWrap1 textarea {display: block} /*Credits: By Santosh Setty (http://webdesigninfo.wordpress.com) */ /*Posted to: Dynamic Drive CSS Library (http://www.dynamicdrive.com/style/) */ #tx_cal_controller_create_element { width:540px; } .basictab ul{ margin: 4px; padding: 3px 0; margin-left: 0; font: bold 12px Verdana; border-bottom: 1px solid gray; list-style-type: none; text-align: left; /*set to left, center, or right to align the menu as desired*/ } .basictab li{ display: inline; margin: 0; } .basictab li a{ text-decoration: none; padding: 3px 7px; margin-right: 3px; border: 1px solid gray; border-bottom: none; background-color: #6699CC; color: #FFFFFF; } .basictab li a:visited{ color: #2d2b2b; } .basictab li a:hover, .basictab li a.current{ background-color: #557CA3; color: #FFFFFF; } .basictab li a:active{ color: #000000; } .tabcontainer{ clear: left; width:95%; /*width of 2nd level sub menus*/ height:1.5em; /*height of 2nd level sub menus. Set to largest\'s sub menu\'s height to avoid jittering.*/ } .tabcontent{ display:none; } #tx_cal_controller_create_element input[type="text"]:not([size]) { width: 6em; /* Desired width of input field */ } #tx_cal_controller_create_element .treelevel0{ display:block; margin-left: 70px; } #tx_cal_controller_create_element p { margin: 7px; } #tx_cal_controller_create_element .notify, #tx_cal_controller_create_element .shared, #tx_cal_controller_create_element .exception { display:block; margin-left: 140px; } #sc1 label { width:50px; } #allday { width:10px; } #category_tree { float:right; width:200px; } #until label, #by_day label, #by_monthday label, #by_month label{ margin-left: 50px; } #by_month label, #by_monthday label{ width: 230px; } #categoryEntries { height:80px; overflow:auto; } .reminderOffset { width: 2em !important; } '), '')
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 41
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->INTincScript_process()!
            $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\\Cal\\Controller\\Controller->main', 'pidList' => '18,23', 'sessionPiVars' => 'page_id', 'calendarName' => 'My Calendar', 'allowSubscribe' => '1', 'subscribeFeUser' => '0', 'subscribeWithCaptcha' => '0', 'additionalWrapperClasses' => '', 'noWrapInBaseClass' => '0', 'dateConfig.' => array('dayPosition' => '2', 'monthPosition' => '1', 'yearPosition' => '0', 'splitSymbol' => '-', 'monthAbbreviationLength' => '3', 'weekdayAbbreviationLength' => '3'), 'dateParserConf.' => array('USmode' => '0'), 'date_stdWrap.' => array(), 'showRecordsWithoutDefaultTranslation' => '1', 'view.' => array('allowedViews' => '', 'customViews' => '', 'noViewFoundHelpText' => 'Controller function not found:', 'category' => '', 'calendar' => '', 'imagePath' => 'EXT:cal/Resources/Private/Templates/v1/img', 'javascriptPath' => 'EXT:cal/Resources/Private/Templates/v1/js', 'weekStartDay' => 'Monday', 'dayLinkTarget' => 'day', 'weekLinkTarget' => 'week', 'monthLinkTarget' => 'month', 'yearLinkTarget' => 'year', 'listLinkTarget' => 'list', 'locationLinkTarget' => 'location', 'organizerLinkTarget' => 'organizer', 'startLinkRange' => '-5 month', 'endLinkRange' => '+5 month', 'required' => '<span class="cal_required">*</span>', 'defaultLinkSetup' => 'TEXT', 'defaultLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1')), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'defaultViewLinkSetup' => 'TEXT', 'defaultViewLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'view', 'wrap' => '%%%|_VIEW%%%', 'case' => 'upper', 'required' => '1')))), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'backLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'showEditableEventsOnly' => '0', 'event.' => array('eventViewPid' => '', 'createEventViewPid' => '', 'editEventViewPid' => '', 'deleteEventViewPid' => '', 'eventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/event.tmpl', 'eventModelTemplate' => 'fileadmin/templates/cal_event_model.tmpl', 'subscriptionManagerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/subscription_manager.tmpl', 'substitutePageTitle' => '1', 'isPreview' => '0', 'categoryLink_stdWrap.' => array('wrap' => ''), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div><br />|</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>|</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'notify.' => array('subscriptionViewPid' => '', 'confirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyConfirm.tmpl', 'confirmTitle' => 'Please confirm the event monitoring on www.abc.com', 'unsubscribeConfirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyUnsubscribeConfirm.tmpl', 'unsubscribeConfirmTitle' => 'Please confirm the event monitoring stop on www.abc.com', 'all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'remind' => '1', 'remind.' => array('time' => '30', 'all.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/remind.tmpl', 'emailTitle' => 'Reminder for event: ###TITLE###'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'meeting.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/invite.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/inviteOnChange.tmpl', 'statusViewPid' => '', 'managerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/meetingManager.tmpl', 'lookingAhead' => '300000;'), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'title.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'notification.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'todo.' => array('todoInlineModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_inline_model.tmpl', 'todoSeparateModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_separate_model.tmpl', 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'location.' => array('locationViewPid' => '', 'createLocationViewPid' => '', 'editLocationViewPid' => '', 'deleteLocationViewPid' => '', 'locationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location.tmpl', 'locationModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location_model.tmpl', 'locationModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/location_partner_model.tmpl', 'locationModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/location_address_model.tmpl', 'maxDate' => '20200101', 'minDate' => '00000001', 'maxRecurringEvents' => '', 'substitutePageTitle' => '1', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'organizer.' => array('organizerViewPid' => '', 'createOrganizerViewPid' => '', 'editOrganizerViewPid' => '', 'deleteOrganizerViewPid' => '', 'organizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer.tmpl', 'organizerModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer_model.tmpl', 'organizerModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/organizer_partner_model.tmpl', 'organizerModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/organizer_address_model.tmpl', 'organizerModelTemplate4FEUser' => 'EXT:cal/Resources/Private/Templates/v1/organizer_feuser_model.tmpl', 'maxRecurringEvents' => '', 'maxDate' => '20200101', 'minDate' => '00000001', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'calendar.' => array('createCalendarViewPid' => '', 'editCalendarViewPid' => '', 'deleteCalendarViewPid' => '', 'calendar.' => array('addIcon' => '<img src="###IMG_PATH###/create_calendar.gif" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_CALENDAR%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_CALENDAR%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_CALENDAR%%%'))))))), 'category.' => array('createCategoryViewPid' => '', 'categoryViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'editCategoryViewPid' => '', 'deleteCategoryViewPid' => '', 'notify.' => array('all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted')), 'category.' => array('defaultHeaderStyle' => 'default_catheader', 'defaultBodyStyle' => 'default_catbody'), 'tree.' => array('calendar' => '', 'category' => '', 'calendarTitle' => 'TEXT', 'calendarTitle.' => array(), 'rootElement' => 'TEXT', 'rootElement.' => array('wrap' => '<table class="treelevel0"><tr><td>|</td></tr></table>'), 'selector' => 'TEXT', 'selector.' => array('wrap' => '<input type="checkbox" name="tx_cal_controller[category][]" value="###UID###" | />'), 'element' => '<span class="###HEADERSTYLE###_bullet ###HEADERSTYLE###_legend_bullet" >&bull;</span><span class="###HEADERSTYLE###_text">###TITLE###</span>', 'emptyElement' => '<br/><br/>', 'subElement' => '<br /><table class="treelevel###LEVEL###" id="treelevel###UID###">', 'subElement_wrap.' => array('wrap' => '<tr><td>|</td></tr>'), 'subElement_pre' => '</table>', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'alternativeSelect' => 'CASE', 'alternativeSelect.' => array('key.' => array('data' => 'field:cur'), 'default' => 'TEXT', 'default.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&tx_cal_controller[category]={field:uid}', 'additionalParams.' => array('insertData' => '1'), 'wrap' => '<li>|</li>')), 'TEXT', '1.' => array('current' => '1', 'wrap' => '<li class="cur"><em>|</em></li>')))), 'day.' => array('dayViewPid' => '', 'dayViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" width="16" height="20" border="0" align="right" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" width="16" height="20" border="0" align="left" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'dayStart' => '0700', 'dayEnd' => '2300', 'dynamic' => '0', 'gridLength' => '15', 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dayTemplate' => 'EXT:cal/Resources/Private/Templates/v1/day.tmpl', 'dayTimeCell' => '<tr><td rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height=\'%s\'></td>', 'dayTimeCell2' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'dayEventPre' => '<td rowspan="%s" align="left" valign="top"', 'dayEventPost' => '</td>', 'classDayborder' => 'class="dayborder"', 'classDayborder2' => 'class="dayborder2"', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'dayFinishRow' => '</tr>', 'dateFormatWeekList' => '%A, %b %d', 'dateFormatDay' => '%a, %b %d', 'timeFormatDay' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_day_starttime', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'week.' => array('weekViewPid' => '', 'weekViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_WEEK%%%'))))), 'prevWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_WEEK%%%'))))), 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" alt="%%%NEXT%%%" class="previousweek_arrow" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" alt="%%%PREV%%%" class="nextweek_arrow" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dynamic' => '0', 'weekTemplate' => 'EXT:cal/Resources/Private/Templates/v1/week.tmpl', 'weekDisplayFullHour' => '<tr><td colspan="4" rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekDisplayInbetween' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekday_stdWrap.' => array('wrap' => '<span class="V9BOLD">|</span>'), 'classWeekborder' => 'class="weekborder"', 'weekEventPre' => '<td rowspan="%s" align="left" valign="top"', 'weekEventPost' => '</td>', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'weekFinishRow' => '</tr>', 'dateFormatWeekList' => '%a, %b %d', 'dateFormatWeek' => '%B %d', 'timeFormatWeek' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_week_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_week_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'month.' => array('monthViewPid' => '', 'monthViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '3024000', 'endPointCorrection' => '3024000', 'monthTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month.tmpl', 'monthSmallTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_small.tmpl', 'monthMediumTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_medium.tmpl', 'monthLargeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_large.tmpl', 'monthMiniTemplate' => '###MONTH_SMALL|+0###', 'monthMakeMiniCal' => '0', 'navigation' => '1', 'horizontalSidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/calendar_nav.tmpl', 'showListInMonthView' => '0', 'useListEventRenderSettingsView' => 'list', 'dateFormatMonth' => '%B', 'dateFormatDay' => '%d', 'weekdayFormatSmallMonth' => '%a', 'weekdayLengthSmallMonth' => '2', 'weekdayFormatMediumMonth' => '%a', 'weekdayLengthMediumMonth' => '0', 'weekdayFormatLargeMonth' => '%A', 'weekdayLengthLargeMonth' => '0', 'smallLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'largeLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'nextMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_MONTH%%%'))))), 'prevMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_MONTH%%%'))))), 'monthSmallStyle' => 'monthSmallBasic', 'monthMediumStyle' => 'monthMediumBasic', 'monthLargeStyle' => 'monthLargeBasic', 'monthOffStyle' => 'monthOff', 'monthSelectedStyle' => 'monthSelected', 'monthSelectedWeekStyle' => 'monthSelectedWeek', 'monthDaySelectedWeekStyle' => 'monthSelectedWeek', 'monthWeekendStyle' => 'monthWeekend', 'monthTodayStyle' => 'monthToday', 'monthCurrentWeekStyle' => 'monthCurrentWeek', 'monthDayCurrentWeekStyle' => 'monthCurrentWeek', 'monthCornerStyle' => 'monthCorner', 'monthDayOfWeekStyle' => 'cal_day%s', 'eventDayStyle' => 'eventDay', 'monthWeekWithEventStyle' => 'monthWeekWithEvent', 'displayDate' => 'TEXT', 'displayDate.' => array('current' => '1', 'strftime' => '%B %Y'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|')), 'year.' => array('yearViewPid' => '', 'yearViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '518400', 'endPointCorrection' => '518400', 'yearTemplate' => 'EXT:cal/Resources/Private/Templates/v1/year.tmpl', 'nextYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_YEAR%%%'))))), 'prevYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_YEAR%%%'))))), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'dontShowOldEvents' => '0'), 'list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => '01 01 2007', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '-&nbsp; |'), 'teaser' => '< tt_content.text.20', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'stripHtml' => '0', 'field' => 'teaser'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'subscription.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))))), 'ics.' => array('showIcsLinks' => '{$plugin.tx_cal_controller.view.ics.showIcsLinks}', 'link_wrap' => '<div class="ics_link">%s</div>', 'icsViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1'), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCalendarLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCalendarLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCategoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCategoryLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsTemplate' => '{$plugin.tx_cal_controller.view.ics.icsTemplate}', 'icsListTemplate' => '{$plugin.tx_cal_controller.view.ics.icsListTemplate}', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'single_ics.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'admin.' => array('adminTemplate' => 'EXT:cal/Resources/Private/Templates/v1/admin.tmpl', 'adminViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'adminViewLink.' => array('current' => '0', 'value' => '<img src="###IMG_PATH###/config_calendar.gif" border="0" style="margin:2px;"/>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%ADMINISTRATION_VIEW%%%')))), 'outerWrap' => '<div class="admin_link">|</div>')), 'freeAndBusy.' => array('enable' => '0', 'headerStyle' => 'fnb_header', 'bodyStyle' => 'fnb_body', 'eventTitle' => 'Busy', 'defaultCalendarUid' => '0'), 'other.' => array('showLogin' => '0', 'loginPageId' => '', 'userFolderId' => '', 'showSearch' => '0', 'showGoto' => '0', 'showCategorySelection' => '0', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'showCalendarSelection' => '0', 'optionString' => '<option value="%s">%s</option>', 'showTomorrowEvents' => '0', 'tomorrowsEvents' => 'TEXT', 'tomorrowsEvents.' => array('current' => '1', 'wrap' => '|<br />'), 'legend_stdWrap.' => array('wrap' => '|<div style="text-align:right;margin-left:10px;"></div>'), 'showTodos' => '0', 'showJumps' => '0', 'dateFormatWeekJump' => '%b %d', 'listWeeks_stdWrap.' => array('wrap' => '<option value="|" >###WEEK1### - ###WEEK2###</option>'), 'listWeeksSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###WEEK1### - ###WEEK2###</option>'), 'listWeek_onlyShowCurrentYear' => '0', 'listWeek_totalWeekCount' => '20', 'listWeek_previousWeekCount' => '5', 'dateFormatMonthJump' => '%B %Y', 'listMonth_stdWrap.' => array('wrap' => '<option value="|" >###MONTH###</option>'), 'listMonthSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###MONTH###</option>'), 'listMonth_onlyShowCurrentYear' => '0', 'listMonth_totalMonthCount' => '12', 'listMonth_previousMonthCount' => '3', 'listMonth_referenceToday' => '1', 'dateFormatYearJump' => '%Y', 'listYear_stdWrap.' => array('wrap' => '<option value="|" >###YEAR###</option>'), 'listYearSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###YEAR###</option>'), 'listYear_totalYearCount' => '3', 'listYear_previousYearCount' => '1', 'sidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/sidebar.tmpl', 'searchBoxTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_box.tmpl', 'monthMenu.' => array('monthStart' => 'TEXT', 'monthStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:m}'), 'prioriCalc' => 'intval', 'thisMonth' => '1'), 'yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}'), 'prioriCalc' => 'intval'), 'count' => '5', 'format' => '%b %Y', 'month_stdWrap.' => array('wrap' => '<span>|</span>')), 'yearMenu.' => array('yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}-3'), 'prioriCalc' => 'intval', 'thisYear' => '1'), 'count' => '5', 'format' => '%Y', 'year_stdWrap.' => array('wrap' => '<span>|</span>'))), 'search.' => array('searchResultAllTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_all.tmpl', 'searchResultEventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_event.tmpl', 'searchResultLocationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_location.tmpl', 'searchResultOrganizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_organizer.tmpl', 'searchEventFieldList' => 'title,organizer,location,description', 'searchLocationFieldList' => 'name', 'searchOrganizerFieldList' => 'name', 'searchUserFieldList' => 'name', 'searchGroupFieldList' => 'title', 'startRange' => '19700102', 'endRange' => '20300101', 'searchLinkUrl' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchLinkUrl.' => array('current' => '', 'value' => '|', 'required' => '1', 'typolink.' => array('useCacheHash' => '1', 'returnLast' => 'url')), 'searchAllLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchAllLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '|%%%SEARCH%%%'))))), 'defaultValues.' => array('query' => '', 'start_day' => 'now', 'end_day' => '+1 month'), 'startSearchAfterSubmit' => '1', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_event.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%QUERY_FOR%%% %%%EVENT%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'search_location.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_organizer.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'search_all.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%SEARCH_EVERYTHING%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'searchEvent' => 'TEXT', 'searchEvent.' => array('current' => '1', 'wrap' => '<h2>%%%EVENTS%%%</h2>|'), 'searchLocation' => 'TEXT', 'searchLocation.' => array('current' => '1', 'wrap' => '<h2>%%%LOCATION%%%</h2>|'), 'searchOrganizer' => 'TEXT', 'searchOrganizer.' => array('current' => '1', 'wrap' => '<h2>%%%ORGANIZER%%%</h2>|'))), 'module.' => array('locationloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_locationloader.tmpl'), 'organizerloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_organizerloader.tmpl')), 'autoFetchTextFields' => 'imagecaption,imagealttext,imagetitletext,attachmentcaption', 'autoFetchTextSplitValue.' => array('char' => '10'), 'lib.' => array('list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0')), '_CSS_DEFAULT_STYLE' => ' /* Styled by TYPO3 Content Rendering Group - ben@netcreators.com 2007 */ /* START new classes and id\'s */ #month-header { width: 100%; margin-bottom: 7px; } #month-header-prevnext { float: left; } #month-header-icons { float: right; text-align: right; } #month-header-icons IMG, #month-header-prevnext IMG , #month-footer IMG{ border: 0px solid; } #month-footer { width: 735px; margin-bottom: 7px; } #month-footer-header { text-align: center; } table.month-small { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-weeknums { border-right:1px solid #AAAAAA; background-color:#EFEFEF; } .month-weekdays { border-bottom:1px solid #AAAAAA; background-color:#EFEFEF; } .month-small a:link,.monthoff a:visited { color: #000000; } .month-small th, .month-small td { padding: 2px; width: 22px; font-size: 10px; text-align: right; } .month-small th{ text-align: center; } .month-large { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-large th, .month-large td { border: 1px solid #A1A5A9; } .month-large .weekday { background-color: #EEE; height: 12px; } .month-large .weeknum { background-color: #A1A5A9; width: 22px; } .month-large .day { height: 100px; width: 100px; vertical-align: top; text-align: left; } .month-large .daylink { font-weight: bold; } .month-large .day div { text-align: right; padding-right: 3px; } .month-large .dayNum { border-bottom: none; background-color: #E8EEF7; text-align: right; } .month-large .days td { border-top: none; } .month-large .alldays td { border-top: none; border-bottom: none; } .month-large .alldays .event div{ -moz-border-radius:2px 2px 2px 2px; } /*For the time being calendar-nav remains a table - no proper alternatives came to my mind yet - suggestions?*/ #calendar-nav { } #calendar-nav td { vertical-align: top; } #calendar-nav td#previous { width: 175px; } #calendar-nav td#list { width: 188px; } #calendar-nav td#legend { width: 188px; } #calendar-nav td#next { width: 175px; } #link-ics, #link-admin { width: 100%; text-align: center; } /* END new classes and id\'s */ .calborder { background-color: #fff; border: 1px solid #A1A5A9; } .tbll { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_l.gif) no-repeat; width: 8px } .tblbot { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_m.gif) repeat-x; width: 100% } .tblr { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_r.gif) no-repeat; width: 8px } .rowOn { background-color: #cfc; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOn2 { background-color: #cfc; border-top: 1px solid #fff; } .rowOff { background-color: #E1E8F1; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOff2 { background-color: #E1E8F1; border-top: 1px solid #fff; } .rowToday { background-color: #cff; border-top: 1px solid #fff; border-left: 1px solid #fff; } .tx-cal-controller .padd { /*XXXpadding: 2px;*/ } .eventbg_1 { background-color: #557CA3; padding: 2px; } .eventbg_2 { background-color: #53A062; padding: 2px; } .eventbg_3 { background-color: #E84F25; padding: 2px; } .eventbg_4 { background-color: #B257A2; padding: 2px; } .eventbg_5 { background-color: #D42020; padding: 2px; } .eventbg_6 { background-color: #B88F0B; padding: 2px; } .eventbg_7 { background-color: #73738C; padding: 2px; } #allday a { font-size: 9px; color: #fff; font-weight: 900; text-decoration: none; } #allday a:hover { text-decoration: underline; } .eventbg2_1 { background-color: #6699CC; border: 1px solid #557CA3; } .eventbg2_2 { background-color: #4FC464; border: 1px solid #53A062; } .eventbg2_3 { background-color: #FF6D3B; border: 1px solid #E84F25; } .eventbg2_4 { background-color: #EA62D4; border: 1px solid #B257A2; } .eventbg2_5 { background-color: #FF5E56; border: 1px solid #D42020; } .eventbg2_6 { background-color: #CCB21F; border: 1px solid #B88F0B; } .eventbg2_7 { background-color: #9292A1; border: 1px solid #73738C; } .dayborder { background-color: #fff; border-top: 1px solid #A1A5A9; } .dayborder2 { background-color: #fff; border-top: 1px dashed #ccc; } .tx-cal-controller .title { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); padding: 5px; } .tx-cal-controller .title h1 { font-family: Helvetica,sans-serif; font-size: 18px; color: #000; margin: 0; } .monthBack { background-color: #A1A5A9; } .monthSmallBasic { text-align: left; vertical-align: top; } .monthMediumBasic { height: 20px; width: 20px; text-align: left; vertical-align: top; } .monthOff, .monthOff a:link,.monthOff a:visited { color: #BBBBBB ! important; } .monthWeekend { background-color: #FFFFEF; } .monthCurrentWeek { background-color: #F2F9FF; } .month-small th, .month-medium th, .month-large th { font-weight: normal; } .month-small th a:link, .month-small th a:visited, .month-medium th a:link, .month-medium th a:visited, .month-large th a:link, .month-large th a:visited{ font-weight: bold; color: #000000; } .monthToday { background:#99AABB none repeat scroll 0% !important; border-color:#556677 rgb(170, 187, 204) rgb(170, 187, 204) rgb(85, 102, 119) !important; border-style:solid !important; border-width:1px !important; } .monthToday a:link, .monthToday a:visited { color:#FFFFFF; } .monthCorner { border-bottom: 1px solid #AAAAAA; } .monthSelected, .monthSelectedWeek { background-color: #AACCEE; } .current td, .days .current td, tr.current th { background-color: #F2F9FF; } .selected { background-color: #AACCEE; } .monthEventTop { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); border-top: 1px solid #A1A5A9; } .monthEventLine { border-right: 1px dotted #A1A5A9; } .medtitle { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); height: 20px; margin-top: 3px; font-weight: 900; } .yearreg { background-color: #fff; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearoff { background-color: #F2F2F2; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearon { background-color: #F2F9FF; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearmonth { background-color: #ccc; } .yearweek { background-color: #eee; width: 30px; font-size: 9px; font-weight: 900; text-align: center; height: 15px; } .eventborder { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/day_title.gif); border: 1px #006699 solid; } .dateback { background-color: #eee; } .weekborder { border-top: 1px dashed #A1A5A9; border-right: 1px solid #A1A5A9; } .weekborder2 { border-right: 1px solid #A1A5A9; } .timeborder { border-right: 2px solid #A1A5A9; border-top: 1px dashed #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .timeborder2 { border-right: 2px solid #A1A5A9; border-top: 1px solid #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback img{ border:none; } .tx-cal-controller .sideback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); } a.psf { text-decoration: none; } a.psf:link { color: #0066FF; } a.psf:visited { color: #0066FF; } a.psf:active { color: #3366CC; } a.psf:hover { color: #000099; text-decoration: underline; } a.ps2 { text-decoration: underline; } a.ps2:link { color: #0066FF; } a.ps2:visited { color: #0066FF; } a.ps2:active { color: #3366CC; } a.ps2:hover { color: #000099; } a.ps3 { text-decoration: none; } a.ps3:link { color: #000; } a.ps3:visited { color: #000; } a.ps3:active { color: #000; } a.ps3:hover { color: #000; text-decoration: underline; } a.ps { text-decoration: none; } a.ps:link { color: #fff; } a.ps:visited { color: #fff; } a.ps:active { color: #fff; } a.ps:hover { color: #fff; text-decoration: underline; } .legend_calendar { font-size: 9px; color: #000000; margin-top: 1em; margin-left: 1em; } .V9 { text-align:left ! important; font-size: 9px; color: #000000; } .V9 ul { margin-bottom: 0px; padding-bottom: 0px; margin-left: 20px; padding-left: 0px; } .V9 li { margin-bottom: 0px; padding-bottom: 0px; } .V10W { font-size: 10px; color: #FFFFFF; text-decoration: none; } .V9W { font-size: 9px; color: #FFFFFF; text-decoration: none; } .V10WB { font-size: 10px; color: #FFFFFF; font-weight: 900; } .V9G { font-size: 9px; color: #666666; } .V10 { font-size: 10px; color: #000000; } .V9BOLD { font-size: 9px; font-weight: 900; } .G10 { font-size: 11px; color: #0066FF; } .G10B { font-size: 11px; color: #000000; } .G10BOLD { font-size: 11px; font-weight: 900; } .G10G { font-size: 11px; color: #A1A5A9; } .V12 { font-size: 12px; color: #000000; } .tx-cal-controller .eventfont { font-size: 11px; color: #FFFFFF; } .tx-cal-controller .query_style { font-size: 11px; width: 156px; margin-bottom: 0; } .tx-cal-controller .search_style { font-size: 12px; width: 134px; margin-bottom: 0; } .tx-cal-controller .login_style { font-size: 11px; width: 80px; margin-bottom: 0; } .tx-cal-controller .bold a:link { font-weight: bold; } .tx-cal-controller .bold a:active { font-weight: bold; } .tx-cal-controller .bold a:visited { font-weight: bold; } /* Pagebrowser */ .tx-cal-controller .pagebrowser span { padding: 0 2px; } /*------------ Category style package: default (blue) - start ------------*/ .default_categoryheader, .default_catheader { background-color: #557CA3; } .V9G .default_categoryheader, .V9G .deafult_catheader { background-color: transparent !important; color: #557CA3 !important; } .default_categoryheader_bullet, .default_catheader_bullet { color: #557CA3; font-size: 13px; } .default_categoryheader_text, .default_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .default_categoryheader_legend_bullet, .default_catheader_legend_bullet { margin-left: 3px; } .default_categoryheader_legend_text, .default_catheader_legend_text { } .default_categoryheader_allday, .default_catheader_allday { text-align: center; background-color: #6699CC; } .default_categorybody, .default_catbody { background-color: #6699CC; border: 1px solid #557CA3; color: #fff; } .default_categorybody a:link, .default_catbody a:link { color: #fff; } /*------------ Category style package: default (blue) - end ------------*/ /*------------ Category style package: green - start ------------*/ .green_catheader, .green_catheader_allday { background-color: #53A062; } .V9G .green_catheader { background-color: transparent !important; color: #53A062 !important; } .green_catheader_bullet { color: #4FC464; font-size: 13px; } .green_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .green_catheader_legend_bullet { margin-left: 3px; } .green_catheader_bullet_text { } .green_catheader_allday { text-align: center; background-color: #4FC464; } .green_catbody { background-color: #4FC464; border: 1px solid #53A062; color: #fff; } .green_catbody a:link { color: #fff; } /*------------ Category style package: green - end ------------*/ /*------------ Category style package: orange - start ------------*/ .orange_catheader, .orange_catheader_allday { background-color: #E84F25; } .V9G .orange_catheader { background-color: transparent !important; color: #E84F25 !important; } .orange_catheader_bullet { color: #FF6D3B; font-size: 13px; } .orange_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .orange_catheader_legend_bullet { margin-left: 3px; } .orange_catheader_bullet_text { } .orange_catheader_allday { text-align: center; background-color: #FF6D3B; } .orange_catbody { background-color: #FF6D3B; border: 1px solid #E84F25; color: #fff; } .orange_catbody a:link { color: #fff; } /*------------ Category style package: orange - end ------------*/ /*------------ Category style package: pink - start ------------*/ .pink_catheader, .pink_catheader_allday { background-color: #B257A2; } .V9G .pink_catheader { background-color: transparent !important; color: #B257A2 !important; } .pink_catheader_bullet { color: #EA62D4; font-size: 13px; } .pink_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .pink_catheader_legend_bullet { margin-left: 3px; } .pink_catheader_bullet_text { } .pink_catheader_allday { text-align: center; background-color: #EA62D4; } .pink_catbody { background-color: #EA62D4; border: 1px solid #B257A2; color: #fff; } .pink_catbody a:link { color: #fff; } /*------------ Category style package: pink - end ------------*/ /*------------ Category style package: red - start ------------*/ .red_catheader, .red_catheader_allday { background-color: #D42020; } .V9G .red_catheader { background-color: transparent !important; color: #D42020 !important; } .red_catheader_bullet { color: #FF5E56; font-size: 13px; } .red_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .red_catheader_legend_bullet { margin-left: 3px; } .red_catheader_bullet_text { } .red_catheader_allday { text-align: center; background-color: #FF5E56; } .red_catbody { background-color: #FF5E56; border: 1px solid #D42020; color: #fff; } .red_catbody a:link { color: #fff; } /*------------ Category style package: red - end ------------*/ /*------------ Category style package: yellow - start ------------*/ .yellow_catheader, .yellow_catheader_allday { background-color: #B88F0B; } .V9G .yellow_catheader { background-color: transparent !important; color: #B88F0B !important; } .yellow_catheader_bullet { color: #CCB21F; font-size: 13px; } .yellow_catheader_text{ color: #000000; font-size: 11px; margin-left: 3px; } .yellow_catheader_legend_bullet { margin-left: 3px; } .yellow_catheader_bullet_text { } .yellow_catheader_allday { text-align: center; background-color: #CCB21F; } .yellow_catbody { background-color: #CCB21F; border: 1px solid #B88F0B; color: #fff; } .yellow_catbody a:link { color: #fff; } /*------------ Category style package: yellow - end ------------*/ /*------------ Category style package: grey - start ------------*/ .grey_catheader, .grey_catheader_allday { background-color: #73738C; } .V9G .grey_catheader { background-color: transparent !important; color: #73738C !important; } .grey_catheader_bullet { color: #9292A1; font-size: 13px; } .grey_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .grey_catheader_legend_bullet { margin-left: 3px; } .grey_catheader_bullet_text { } .grey_catheader_allday { text-align: center; background-color: #9292A1; } .grey_catbody { background-color: #9292A1; border: 1px solid #73738C; color: #fff; } .grey_catbody a:link { color: #fff; } /*------------ Category style package: grey - end ------------*/ .tx-cal-controller .bold { /*font-weight: bold;*/ } .refresh_calendar { margin-right: 5px; } /* Start of moving stuff from the templat into this file */ .tx-cal-controller .weekview { margin: 0 auto; } .tx-cal-controller .weekview .nextweek_arrow, .tx-cal-controller .weekview .previousweek_arrow { width: 16px; height: 20px; border: 0px; text-align: left; } .previsousweek_arrow { text-align: right; } /*------------- free & busy styles ----------*/ .fnb_header { background-color: #444444; } .fnb_body { background-color: #888888; border: 1px solid #999999; color: #fff; } /*------------- list styles ------------*/ .tx-cal-controller .even { background-color: #eeeeee; } .tx-cal-controller .treelevel0 { } .tx-cal-controller .treelevel1 { margin-left:20px; } .tx-cal-controller .treelevel2 { margin-left:30px; } .tx-cal-controller label { display:block; float:left; margin-bottom: 0px; padding-right:1em; text-align:right; width:120px; } .tx-cal-controller fieldset div { clear:left; } .tx-cal-controller .noborder { border: none; } .tx-cal-controller .search-result { list-style: none; margin-left: 0px; padding-left: 0px; } .tx-cal-controller .search-result li { padding-bottom: 1em; } .tx-cal-controller .search_result li .even { background-color: #EEEEEE; } .tx_cal_controller img .mouse_pointer { cursor:pointer; }/* #cal_general,#cal_location,#cal_organizer,#cal_freq,#cal_exception,#cal_files,#cal_notify { height:210px; overflow:auto; padding:8px; }*/ .x-form-label-top .x-form-item label { width:70px ! important; } .x-form-invalid, textarea.x-form-invalid { background: none ! important; } #cal_event_description { margin-top:10px; } .admin_link { width:100%; text-align:center; } .ics_link { width:100%; text-align:center; } .tx-cal-controller .cal_required { color: red; } .tx-cal-controller .constrain { color: red; font-weight:bold; } #editorWrap1 textarea {display: block} /*Credits: By Santosh Setty (http://webdesigninfo.wordpress.com) */ /*Posted to: Dynamic Drive CSS Library (http://www.dynamicdrive.com/style/) */ #tx_cal_controller_create_element { width:540px; } .basictab ul{ margin: 4px; padding: 3px 0; margin-left: 0; font: bold 12px Verdana; border-bottom: 1px solid gray; list-style-type: none; text-align: left; /*set to left, center, or right to align the menu as desired*/ } .basictab li{ display: inline; margin: 0; } .basictab li a{ text-decoration: none; padding: 3px 7px; margin-right: 3px; border: 1px solid gray; border-bottom: none; background-color: #6699CC; color: #FFFFFF; } .basictab li a:visited{ color: #2d2b2b; } .basictab li a:hover, .basictab li a.current{ background-color: #557CA3; color: #FFFFFF; } .basictab li a:active{ color: #000000; } .tabcontainer{ clear: left; width:95%; /*width of 2nd level sub menus*/ height:1.5em; /*height of 2nd level sub menus. Set to largest\'s sub menu\'s height to avoid jittering.*/ } .tabcontent{ display:none; } #tx_cal_controller_create_element input[type="text"]:not([size]) { width: 6em; /* Desired width of input field */ } #tx_cal_controller_create_element .treelevel0{ display:block; margin-left: 70px; } #tx_cal_controller_create_element p { margin: 7px; } #tx_cal_controller_create_element .notify, #tx_cal_controller_create_element .shared, #tx_cal_controller_create_element .exception { display:block; margin-left: 140px; } #sc1 label { width:50px; } #allday { width:10px; } #category_tree { float:right; width:200px; } #until label, #by_day label, #by_monthday label, #by_month label{ margin-left: 50px; } #by_month label, #by_monthday label{ width: 230px; } #categoryEntries { height:80px; overflow:auto; } .reminderOffset { width: 2em !important; } '))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // 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\\Cal\\Controller\\Controller->main', 'pidList' => '18,23', 'sessionPiVars' => 'page_id', 'calendarName' => 'My Calendar', 'allowSubscribe' => '1', 'subscribeFeUser' => '0', 'subscribeWithCaptcha' => '0', 'additionalWrapperClasses' => '', 'noWrapInBaseClass' => '0', 'dateConfig.' => array('dayPosition' => '2', 'monthPosition' => '1', 'yearPosition' => '0', 'splitSymbol' => '-', 'monthAbbreviationLength' => '3', 'weekdayAbbreviationLength' => '3'), 'dateParserConf.' => array('USmode' => '0'), 'date_stdWrap.' => array(), 'showRecordsWithoutDefaultTranslation' => '1', 'view.' => array('allowedViews' => '', 'customViews' => '', 'noViewFoundHelpText' => 'Controller function not found:', 'category' => '', 'calendar' => '', 'imagePath' => 'EXT:cal/Resources/Private/Templates/v1/img', 'javascriptPath' => 'EXT:cal/Resources/Private/Templates/v1/js', 'weekStartDay' => 'Monday', 'dayLinkTarget' => 'day', 'weekLinkTarget' => 'week', 'monthLinkTarget' => 'month', 'yearLinkTarget' => 'year', 'listLinkTarget' => 'list', 'locationLinkTarget' => 'location', 'organizerLinkTarget' => 'organizer', 'startLinkRange' => '-5 month', 'endLinkRange' => '+5 month', 'required' => '<span class="cal_required">*</span>', 'defaultLinkSetup' => 'TEXT', 'defaultLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1')), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'defaultViewLinkSetup' => 'TEXT', 'defaultViewLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'view', 'wrap' => '%%%|_VIEW%%%', 'case' => 'upper', 'required' => '1')))), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'backLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'showEditableEventsOnly' => '0', 'event.' => array('eventViewPid' => '', 'createEventViewPid' => '', 'editEventViewPid' => '', 'deleteEventViewPid' => '', 'eventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/event.tmpl', 'eventModelTemplate' => 'fileadmin/templates/cal_event_model.tmpl', 'subscriptionManagerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/subscription_manager.tmpl', 'substitutePageTitle' => '1', 'isPreview' => '0', 'categoryLink_stdWrap.' => array('wrap' => ''), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div><br />|</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>|</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'notify.' => array('subscriptionViewPid' => '', 'confirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyConfirm.tmpl', 'confirmTitle' => 'Please confirm the event monitoring on www.abc.com', 'unsubscribeConfirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyUnsubscribeConfirm.tmpl', 'unsubscribeConfirmTitle' => 'Please confirm the event monitoring stop on www.abc.com', 'all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'remind' => '1', 'remind.' => array('time' => '30', 'all.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/remind.tmpl', 'emailTitle' => 'Reminder for event: ###TITLE###'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'meeting.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/invite.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/inviteOnChange.tmpl', 'statusViewPid' => '', 'managerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/meetingManager.tmpl', 'lookingAhead' => '300000;'), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'title.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'notification.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'todo.' => array('todoInlineModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_inline_model.tmpl', 'todoSeparateModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_separate_model.tmpl', 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'location.' => array('locationViewPid' => '', 'createLocationViewPid' => '', 'editLocationViewPid' => '', 'deleteLocationViewPid' => '', 'locationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location.tmpl', 'locationModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location_model.tmpl', 'locationModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/location_partner_model.tmpl', 'locationModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/location_address_model.tmpl', 'maxDate' => '20200101', 'minDate' => '00000001', 'maxRecurringEvents' => '', 'substitutePageTitle' => '1', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'organizer.' => array('organizerViewPid' => '', 'createOrganizerViewPid' => '', 'editOrganizerViewPid' => '', 'deleteOrganizerViewPid' => '', 'organizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer.tmpl', 'organizerModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer_model.tmpl', 'organizerModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/organizer_partner_model.tmpl', 'organizerModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/organizer_address_model.tmpl', 'organizerModelTemplate4FEUser' => 'EXT:cal/Resources/Private/Templates/v1/organizer_feuser_model.tmpl', 'maxRecurringEvents' => '', 'maxDate' => '20200101', 'minDate' => '00000001', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'calendar.' => array('createCalendarViewPid' => '', 'editCalendarViewPid' => '', 'deleteCalendarViewPid' => '', 'calendar.' => array('addIcon' => '<img src="###IMG_PATH###/create_calendar.gif" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_CALENDAR%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_CALENDAR%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_CALENDAR%%%'))))))), 'category.' => array('createCategoryViewPid' => '', 'categoryViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'editCategoryViewPid' => '', 'deleteCategoryViewPid' => '', 'notify.' => array('all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted')), 'category.' => array('defaultHeaderStyle' => 'default_catheader', 'defaultBodyStyle' => 'default_catbody'), 'tree.' => array('calendar' => '', 'category' => '', 'calendarTitle' => 'TEXT', 'calendarTitle.' => array(), 'rootElement' => 'TEXT', 'rootElement.' => array('wrap' => '<table class="treelevel0"><tr><td>|</td></tr></table>'), 'selector' => 'TEXT', 'selector.' => array('wrap' => '<input type="checkbox" name="tx_cal_controller[category][]" value="###UID###" | />'), 'element' => '<span class="###HEADERSTYLE###_bullet ###HEADERSTYLE###_legend_bullet" >&bull;</span><span class="###HEADERSTYLE###_text">###TITLE###</span>', 'emptyElement' => '<br/><br/>', 'subElement' => '<br /><table class="treelevel###LEVEL###" id="treelevel###UID###">', 'subElement_wrap.' => array('wrap' => '<tr><td>|</td></tr>'), 'subElement_pre' => '</table>', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'alternativeSelect' => 'CASE', 'alternativeSelect.' => array('key.' => array('data' => 'field:cur'), 'default' => 'TEXT', 'default.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&tx_cal_controller[category]={field:uid}', 'additionalParams.' => array('insertData' => '1'), 'wrap' => '<li>|</li>')), 'TEXT', '1.' => array('current' => '1', 'wrap' => '<li class="cur"><em>|</em></li>')))), 'day.' => array('dayViewPid' => '', 'dayViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" width="16" height="20" border="0" align="right" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" width="16" height="20" border="0" align="left" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'dayStart' => '0700', 'dayEnd' => '2300', 'dynamic' => '0', 'gridLength' => '15', 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dayTemplate' => 'EXT:cal/Resources/Private/Templates/v1/day.tmpl', 'dayTimeCell' => '<tr><td rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height=\'%s\'></td>', 'dayTimeCell2' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'dayEventPre' => '<td rowspan="%s" align="left" valign="top"', 'dayEventPost' => '</td>', 'classDayborder' => 'class="dayborder"', 'classDayborder2' => 'class="dayborder2"', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'dayFinishRow' => '</tr>', 'dateFormatWeekList' => '%A, %b %d', 'dateFormatDay' => '%a, %b %d', 'timeFormatDay' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_day_starttime', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'week.' => array('weekViewPid' => '', 'weekViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_WEEK%%%'))))), 'prevWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_WEEK%%%'))))), 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" alt="%%%NEXT%%%" class="previousweek_arrow" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" alt="%%%PREV%%%" class="nextweek_arrow" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dynamic' => '0', 'weekTemplate' => 'EXT:cal/Resources/Private/Templates/v1/week.tmpl', 'weekDisplayFullHour' => '<tr><td colspan="4" rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekDisplayInbetween' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekday_stdWrap.' => array('wrap' => '<span class="V9BOLD">|</span>'), 'classWeekborder' => 'class="weekborder"', 'weekEventPre' => '<td rowspan="%s" align="left" valign="top"', 'weekEventPost' => '</td>', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'weekFinishRow' => '</tr>', 'dateFormatWeekList' => '%a, %b %d', 'dateFormatWeek' => '%B %d', 'timeFormatWeek' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_week_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_week_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'month.' => array('monthViewPid' => '', 'monthViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '3024000', 'endPointCorrection' => '3024000', 'monthTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month.tmpl', 'monthSmallTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_small.tmpl', 'monthMediumTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_medium.tmpl', 'monthLargeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_large.tmpl', 'monthMiniTemplate' => '###MONTH_SMALL|+0###', 'monthMakeMiniCal' => '0', 'navigation' => '1', 'horizontalSidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/calendar_nav.tmpl', 'showListInMonthView' => '0', 'useListEventRenderSettingsView' => 'list', 'dateFormatMonth' => '%B', 'dateFormatDay' => '%d', 'weekdayFormatSmallMonth' => '%a', 'weekdayLengthSmallMonth' => '2', 'weekdayFormatMediumMonth' => '%a', 'weekdayLengthMediumMonth' => '0', 'weekdayFormatLargeMonth' => '%A', 'weekdayLengthLargeMonth' => '0', 'smallLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'largeLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'nextMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_MONTH%%%'))))), 'prevMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_MONTH%%%'))))), 'monthSmallStyle' => 'monthSmallBasic', 'monthMediumStyle' => 'monthMediumBasic', 'monthLargeStyle' => 'monthLargeBasic', 'monthOffStyle' => 'monthOff', 'monthSelectedStyle' => 'monthSelected', 'monthSelectedWeekStyle' => 'monthSelectedWeek', 'monthDaySelectedWeekStyle' => 'monthSelectedWeek', 'monthWeekendStyle' => 'monthWeekend', 'monthTodayStyle' => 'monthToday', 'monthCurrentWeekStyle' => 'monthCurrentWeek', 'monthDayCurrentWeekStyle' => 'monthCurrentWeek', 'monthCornerStyle' => 'monthCorner', 'monthDayOfWeekStyle' => 'cal_day%s', 'eventDayStyle' => 'eventDay', 'monthWeekWithEventStyle' => 'monthWeekWithEvent', 'displayDate' => 'TEXT', 'displayDate.' => array('current' => '1', 'strftime' => '%B %Y'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|')), 'year.' => array('yearViewPid' => '', 'yearViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '518400', 'endPointCorrection' => '518400', 'yearTemplate' => 'EXT:cal/Resources/Private/Templates/v1/year.tmpl', 'nextYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_YEAR%%%'))))), 'prevYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_YEAR%%%'))))), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'dontShowOldEvents' => '0'), 'list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => '01 01 2007', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '-&nbsp; |'), 'teaser' => '< tt_content.text.20', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'stripHtml' => '0', 'field' => 'teaser'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'subscription.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))))), 'ics.' => array('showIcsLinks' => '{$plugin.tx_cal_controller.view.ics.showIcsLinks}', 'link_wrap' => '<div class="ics_link">%s</div>', 'icsViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1'), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCalendarLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCalendarLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCategoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCategoryLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsTemplate' => '{$plugin.tx_cal_controller.view.ics.icsTemplate}', 'icsListTemplate' => '{$plugin.tx_cal_controller.view.ics.icsListTemplate}', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'single_ics.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'admin.' => array('adminTemplate' => 'EXT:cal/Resources/Private/Templates/v1/admin.tmpl', 'adminViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'adminViewLink.' => array('current' => '0', 'value' => '<img src="###IMG_PATH###/config_calendar.gif" border="0" style="margin:2px;"/>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%ADMINISTRATION_VIEW%%%')))), 'outerWrap' => '<div class="admin_link">|</div>')), 'freeAndBusy.' => array('enable' => '0', 'headerStyle' => 'fnb_header', 'bodyStyle' => 'fnb_body', 'eventTitle' => 'Busy', 'defaultCalendarUid' => '0'), 'other.' => array('showLogin' => '0', 'loginPageId' => '', 'userFolderId' => '', 'showSearch' => '0', 'showGoto' => '0', 'showCategorySelection' => '0', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'showCalendarSelection' => '0', 'optionString' => '<option value="%s">%s</option>', 'showTomorrowEvents' => '0', 'tomorrowsEvents' => 'TEXT', 'tomorrowsEvents.' => array('current' => '1', 'wrap' => '|<br />'), 'legend_stdWrap.' => array('wrap' => '|<div style="text-align:right;margin-left:10px;"></div>'), 'showTodos' => '0', 'showJumps' => '0', 'dateFormatWeekJump' => '%b %d', 'listWeeks_stdWrap.' => array('wrap' => '<option value="|" >###WEEK1### - ###WEEK2###</option>'), 'listWeeksSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###WEEK1### - ###WEEK2###</option>'), 'listWeek_onlyShowCurrentYear' => '0', 'listWeek_totalWeekCount' => '20', 'listWeek_previousWeekCount' => '5', 'dateFormatMonthJump' => '%B %Y', 'listMonth_stdWrap.' => array('wrap' => '<option value="|" >###MONTH###</option>'), 'listMonthSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###MONTH###</option>'), 'listMonth_onlyShowCurrentYear' => '0', 'listMonth_totalMonthCount' => '12', 'listMonth_previousMonthCount' => '3', 'listMonth_referenceToday' => '1', 'dateFormatYearJump' => '%Y', 'listYear_stdWrap.' => array('wrap' => '<option value="|" >###YEAR###</option>'), 'listYearSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###YEAR###</option>'), 'listYear_totalYearCount' => '3', 'listYear_previousYearCount' => '1', 'sidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/sidebar.tmpl', 'searchBoxTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_box.tmpl', 'monthMenu.' => array('monthStart' => 'TEXT', 'monthStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:m}'), 'prioriCalc' => 'intval', 'thisMonth' => '1'), 'yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}'), 'prioriCalc' => 'intval'), 'count' => '5', 'format' => '%b %Y', 'month_stdWrap.' => array('wrap' => '<span>|</span>')), 'yearMenu.' => array('yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}-3'), 'prioriCalc' => 'intval', 'thisYear' => '1'), 'count' => '5', 'format' => '%Y', 'year_stdWrap.' => array('wrap' => '<span>|</span>'))), 'search.' => array('searchResultAllTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_all.tmpl', 'searchResultEventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_event.tmpl', 'searchResultLocationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_location.tmpl', 'searchResultOrganizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_organizer.tmpl', 'searchEventFieldList' => 'title,organizer,location,description', 'searchLocationFieldList' => 'name', 'searchOrganizerFieldList' => 'name', 'searchUserFieldList' => 'name', 'searchGroupFieldList' => 'title', 'startRange' => '19700102', 'endRange' => '20300101', 'searchLinkUrl' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchLinkUrl.' => array('current' => '', 'value' => '|', 'required' => '1', 'typolink.' => array('useCacheHash' => '1', 'returnLast' => 'url')), 'searchAllLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchAllLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '|%%%SEARCH%%%'))))), 'defaultValues.' => array('query' => '', 'start_day' => 'now', 'end_day' => '+1 month'), 'startSearchAfterSubmit' => '1', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_event.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%QUERY_FOR%%% %%%EVENT%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'search_location.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_organizer.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'search_all.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%SEARCH_EVERYTHING%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'searchEvent' => 'TEXT', 'searchEvent.' => array('current' => '1', 'wrap' => '<h2>%%%EVENTS%%%</h2>|'), 'searchLocation' => 'TEXT', 'searchLocation.' => array('current' => '1', 'wrap' => '<h2>%%%LOCATION%%%</h2>|'), 'searchOrganizer' => 'TEXT', 'searchOrganizer.' => array('current' => '1', 'wrap' => '<h2>%%%ORGANIZER%%%</h2>|'))), 'module.' => array('locationloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_locationloader.tmpl'), 'organizerloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_organizerloader.tmpl')), 'autoFetchTextFields' => 'imagecaption,imagealttext,imagetitletext,attachmentcaption', 'autoFetchTextSplitValue.' => array('char' => '10'), 'lib.' => array('list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0')), '_CSS_DEFAULT_STYLE' => ' /* Styled by TYPO3 Content Rendering Group - ben@netcreators.com 2007 */ /* START new classes and id\'s */ #month-header { width: 100%; margin-bottom: 7px; } #month-header-prevnext { float: left; } #month-header-icons { float: right; text-align: right; } #month-header-icons IMG, #month-header-prevnext IMG , #month-footer IMG{ border: 0px solid; } #month-footer { width: 735px; margin-bottom: 7px; } #month-footer-header { text-align: center; } table.month-small { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-weeknums { border-right:1px solid #AAAAAA; background-color:#EFEFEF; } .month-weekdays { border-bottom:1px solid #AAAAAA; background-color:#EFEFEF; } .month-small a:link,.monthoff a:visited { color: #000000; } .month-small th, .month-small td { padding: 2px; width: 22px; font-size: 10px; text-align: right; } .month-small th{ text-align: center; } .month-large { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-large th, .month-large td { border: 1px solid #A1A5A9; } .month-large .weekday { background-color: #EEE; height: 12px; } .month-large .weeknum { background-color: #A1A5A9; width: 22px; } .month-large .day { height: 100px; width: 100px; vertical-align: top; text-align: left; } .month-large .daylink { font-weight: bold; } .month-large .day div { text-align: right; padding-right: 3px; } .month-large .dayNum { border-bottom: none; background-color: #E8EEF7; text-align: right; } .month-large .days td { border-top: none; } .month-large .alldays td { border-top: none; border-bottom: none; } .month-large .alldays .event div{ -moz-border-radius:2px 2px 2px 2px; } /*For the time being calendar-nav remains a table - no proper alternatives came to my mind yet - suggestions?*/ #calendar-nav { } #calendar-nav td { vertical-align: top; } #calendar-nav td#previous { width: 175px; } #calendar-nav td#list { width: 188px; } #calendar-nav td#legend { width: 188px; } #calendar-nav td#next { width: 175px; } #link-ics, #link-admin { width: 100%; text-align: center; } /* END new classes and id\'s */ .calborder { background-color: #fff; border: 1px solid #A1A5A9; } .tbll { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_l.gif) no-repeat; width: 8px } .tblbot { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_m.gif) repeat-x; width: 100% } .tblr { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_r.gif) no-repeat; width: 8px } .rowOn { background-color: #cfc; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOn2 { background-color: #cfc; border-top: 1px solid #fff; } .rowOff { background-color: #E1E8F1; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOff2 { background-color: #E1E8F1; border-top: 1px solid #fff; } .rowToday { background-color: #cff; border-top: 1px solid #fff; border-left: 1px solid #fff; } .tx-cal-controller .padd { /*XXXpadding: 2px;*/ } .eventbg_1 { background-color: #557CA3; padding: 2px; } .eventbg_2 { background-color: #53A062; padding: 2px; } .eventbg_3 { background-color: #E84F25; padding: 2px; } .eventbg_4 { background-color: #B257A2; padding: 2px; } .eventbg_5 { background-color: #D42020; padding: 2px; } .eventbg_6 { background-color: #B88F0B; padding: 2px; } .eventbg_7 { background-color: #73738C; padding: 2px; } #allday a { font-size: 9px; color: #fff; font-weight: 900; text-decoration: none; } #allday a:hover { text-decoration: underline; } .eventbg2_1 { background-color: #6699CC; border: 1px solid #557CA3; } .eventbg2_2 { background-color: #4FC464; border: 1px solid #53A062; } .eventbg2_3 { background-color: #FF6D3B; border: 1px solid #E84F25; } .eventbg2_4 { background-color: #EA62D4; border: 1px solid #B257A2; } .eventbg2_5 { background-color: #FF5E56; border: 1px solid #D42020; } .eventbg2_6 { background-color: #CCB21F; border: 1px solid #B88F0B; } .eventbg2_7 { background-color: #9292A1; border: 1px solid #73738C; } .dayborder { background-color: #fff; border-top: 1px solid #A1A5A9; } .dayborder2 { background-color: #fff; border-top: 1px dashed #ccc; } .tx-cal-controller .title { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); padding: 5px; } .tx-cal-controller .title h1 { font-family: Helvetica,sans-serif; font-size: 18px; color: #000; margin: 0; } .monthBack { background-color: #A1A5A9; } .monthSmallBasic { text-align: left; vertical-align: top; } .monthMediumBasic { height: 20px; width: 20px; text-align: left; vertical-align: top; } .monthOff, .monthOff a:link,.monthOff a:visited { color: #BBBBBB ! important; } .monthWeekend { background-color: #FFFFEF; } .monthCurrentWeek { background-color: #F2F9FF; } .month-small th, .month-medium th, .month-large th { font-weight: normal; } .month-small th a:link, .month-small th a:visited, .month-medium th a:link, .month-medium th a:visited, .month-large th a:link, .month-large th a:visited{ font-weight: bold; color: #000000; } .monthToday { background:#99AABB none repeat scroll 0% !important; border-color:#556677 rgb(170, 187, 204) rgb(170, 187, 204) rgb(85, 102, 119) !important; border-style:solid !important; border-width:1px !important; } .monthToday a:link, .monthToday a:visited { color:#FFFFFF; } .monthCorner { border-bottom: 1px solid #AAAAAA; } .monthSelected, .monthSelectedWeek { background-color: #AACCEE; } .current td, .days .current td, tr.current th { background-color: #F2F9FF; } .selected { background-color: #AACCEE; } .monthEventTop { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); border-top: 1px solid #A1A5A9; } .monthEventLine { border-right: 1px dotted #A1A5A9; } .medtitle { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); height: 20px; margin-top: 3px; font-weight: 900; } .yearreg { background-color: #fff; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearoff { background-color: #F2F2F2; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearon { background-color: #F2F9FF; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearmonth { background-color: #ccc; } .yearweek { background-color: #eee; width: 30px; font-size: 9px; font-weight: 900; text-align: center; height: 15px; } .eventborder { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/day_title.gif); border: 1px #006699 solid; } .dateback { background-color: #eee; } .weekborder { border-top: 1px dashed #A1A5A9; border-right: 1px solid #A1A5A9; } .weekborder2 { border-right: 1px solid #A1A5A9; } .timeborder { border-right: 2px solid #A1A5A9; border-top: 1px dashed #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .timeborder2 { border-right: 2px solid #A1A5A9; border-top: 1px solid #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback img{ border:none; } .tx-cal-controller .sideback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); } a.psf { text-decoration: none; } a.psf:link { color: #0066FF; } a.psf:visited { color: #0066FF; } a.psf:active { color: #3366CC; } a.psf:hover { color: #000099; text-decoration: underline; } a.ps2 { text-decoration: underline; } a.ps2:link { color: #0066FF; } a.ps2:visited { color: #0066FF; } a.ps2:active { color: #3366CC; } a.ps2:hover { color: #000099; } a.ps3 { text-decoration: none; } a.ps3:link { color: #000; } a.ps3:visited { color: #000; } a.ps3:active { color: #000; } a.ps3:hover { color: #000; text-decoration: underline; } a.ps { text-decoration: none; } a.ps:link { color: #fff; } a.ps:visited { color: #fff; } a.ps:active { color: #fff; } a.ps:hover { color: #fff; text-decoration: underline; } .legend_calendar { font-size: 9px; color: #000000; margin-top: 1em; margin-left: 1em; } .V9 { text-align:left ! important; font-size: 9px; color: #000000; } .V9 ul { margin-bottom: 0px; padding-bottom: 0px; margin-left: 20px; padding-left: 0px; } .V9 li { margin-bottom: 0px; padding-bottom: 0px; } .V10W { font-size: 10px; color: #FFFFFF; text-decoration: none; } .V9W { font-size: 9px; color: #FFFFFF; text-decoration: none; } .V10WB { font-size: 10px; color: #FFFFFF; font-weight: 900; } .V9G { font-size: 9px; color: #666666; } .V10 { font-size: 10px; color: #000000; } .V9BOLD { font-size: 9px; font-weight: 900; } .G10 { font-size: 11px; color: #0066FF; } .G10B { font-size: 11px; color: #000000; } .G10BOLD { font-size: 11px; font-weight: 900; } .G10G { font-size: 11px; color: #A1A5A9; } .V12 { font-size: 12px; color: #000000; } .tx-cal-controller .eventfont { font-size: 11px; color: #FFFFFF; } .tx-cal-controller .query_style { font-size: 11px; width: 156px; margin-bottom: 0; } .tx-cal-controller .search_style { font-size: 12px; width: 134px; margin-bottom: 0; } .tx-cal-controller .login_style { font-size: 11px; width: 80px; margin-bottom: 0; } .tx-cal-controller .bold a:link { font-weight: bold; } .tx-cal-controller .bold a:active { font-weight: bold; } .tx-cal-controller .bold a:visited { font-weight: bold; } /* Pagebrowser */ .tx-cal-controller .pagebrowser span { padding: 0 2px; } /*------------ Category style package: default (blue) - start ------------*/ .default_categoryheader, .default_catheader { background-color: #557CA3; } .V9G .default_categoryheader, .V9G .deafult_catheader { background-color: transparent !important; color: #557CA3 !important; } .default_categoryheader_bullet, .default_catheader_bullet { color: #557CA3; font-size: 13px; } .default_categoryheader_text, .default_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .default_categoryheader_legend_bullet, .default_catheader_legend_bullet { margin-left: 3px; } .default_categoryheader_legend_text, .default_catheader_legend_text { } .default_categoryheader_allday, .default_catheader_allday { text-align: center; background-color: #6699CC; } .default_categorybody, .default_catbody { background-color: #6699CC; border: 1px solid #557CA3; color: #fff; } .default_categorybody a:link, .default_catbody a:link { color: #fff; } /*------------ Category style package: default (blue) - end ------------*/ /*------------ Category style package: green - start ------------*/ .green_catheader, .green_catheader_allday { background-color: #53A062; } .V9G .green_catheader { background-color: transparent !important; color: #53A062 !important; } .green_catheader_bullet { color: #4FC464; font-size: 13px; } .green_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .green_catheader_legend_bullet { margin-left: 3px; } .green_catheader_bullet_text { } .green_catheader_allday { text-align: center; background-color: #4FC464; } .green_catbody { background-color: #4FC464; border: 1px solid #53A062; color: #fff; } .green_catbody a:link { color: #fff; } /*------------ Category style package: green - end ------------*/ /*------------ Category style package: orange - start ------------*/ .orange_catheader, .orange_catheader_allday { background-color: #E84F25; } .V9G .orange_catheader { background-color: transparent !important; color: #E84F25 !important; } .orange_catheader_bullet { color: #FF6D3B; font-size: 13px; } .orange_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .orange_catheader_legend_bullet { margin-left: 3px; } .orange_catheader_bullet_text { } .orange_catheader_allday { text-align: center; background-color: #FF6D3B; } .orange_catbody { background-color: #FF6D3B; border: 1px solid #E84F25; color: #fff; } .orange_catbody a:link { color: #fff; } /*------------ Category style package: orange - end ------------*/ /*------------ Category style package: pink - start ------------*/ .pink_catheader, .pink_catheader_allday { background-color: #B257A2; } .V9G .pink_catheader { background-color: transparent !important; color: #B257A2 !important; } .pink_catheader_bullet { color: #EA62D4; font-size: 13px; } .pink_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .pink_catheader_legend_bullet { margin-left: 3px; } .pink_catheader_bullet_text { } .pink_catheader_allday { text-align: center; background-color: #EA62D4; } .pink_catbody { background-color: #EA62D4; border: 1px solid #B257A2; color: #fff; } .pink_catbody a:link { color: #fff; } /*------------ Category style package: pink - end ------------*/ /*------------ Category style package: red - start ------------*/ .red_catheader, .red_catheader_allday { background-color: #D42020; } .V9G .red_catheader { background-color: transparent !important; color: #D42020 !important; } .red_catheader_bullet { color: #FF5E56; font-size: 13px; } .red_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .red_catheader_legend_bullet { margin-left: 3px; } .red_catheader_bullet_text { } .red_catheader_allday { text-align: center; background-color: #FF5E56; } .red_catbody { background-color: #FF5E56; border: 1px solid #D42020; color: #fff; } .red_catbody a:link { color: #fff; } /*------------ Category style package: red - end ------------*/ /*------------ Category style package: yellow - start ------------*/ .yellow_catheader, .yellow_catheader_allday { background-color: #B88F0B; } .V9G .yellow_catheader { background-color: transparent !important; color: #B88F0B !important; } .yellow_catheader_bullet { color: #CCB21F; font-size: 13px; } .yellow_catheader_text{ color: #000000; font-size: 11px; margin-left: 3px; } .yellow_catheader_legend_bullet { margin-left: 3px; } .yellow_catheader_bullet_text { } .yellow_catheader_allday { text-align: center; background-color: #CCB21F; } .yellow_catbody { background-color: #CCB21F; border: 1px solid #B88F0B; color: #fff; } .yellow_catbody a:link { color: #fff; } /*------------ Category style package: yellow - end ------------*/ /*------------ Category style package: grey - start ------------*/ .grey_catheader, .grey_catheader_allday { background-color: #73738C; } .V9G .grey_catheader { background-color: transparent !important; color: #73738C !important; } .grey_catheader_bullet { color: #9292A1; font-size: 13px; } .grey_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .grey_catheader_legend_bullet { margin-left: 3px; } .grey_catheader_bullet_text { } .grey_catheader_allday { text-align: center; background-color: #9292A1; } .grey_catbody { background-color: #9292A1; border: 1px solid #73738C; color: #fff; } .grey_catbody a:link { color: #fff; } /*------------ Category style package: grey - end ------------*/ .tx-cal-controller .bold { /*font-weight: bold;*/ } .refresh_calendar { margin-right: 5px; } /* Start of moving stuff from the templat into this file */ .tx-cal-controller .weekview { margin: 0 auto; } .tx-cal-controller .weekview .nextweek_arrow, .tx-cal-controller .weekview .previousweek_arrow { width: 16px; height: 20px; border: 0px; text-align: left; } .previsousweek_arrow { text-align: right; } /*------------- free & busy styles ----------*/ .fnb_header { background-color: #444444; } .fnb_body { background-color: #888888; border: 1px solid #999999; color: #fff; } /*------------- list styles ------------*/ .tx-cal-controller .even { background-color: #eeeeee; } .tx-cal-controller .treelevel0 { } .tx-cal-controller .treelevel1 { margin-left:20px; } .tx-cal-controller .treelevel2 { margin-left:30px; } .tx-cal-controller label { display:block; float:left; margin-bottom: 0px; padding-right:1em; text-align:right; width:120px; } .tx-cal-controller fieldset div { clear:left; } .tx-cal-controller .noborder { border: none; } .tx-cal-controller .search-result { list-style: none; margin-left: 0px; padding-left: 0px; } .tx-cal-controller .search-result li { padding-bottom: 1em; } .tx-cal-controller .search_result li .even { background-color: #EEEEEE; } .tx_cal_controller img .mouse_pointer { cursor:pointer; }/* #cal_general,#cal_location,#cal_organizer,#cal_freq,#cal_exception,#cal_files,#cal_notify { height:210px; overflow:auto; padding:8px; }*/ .x-form-label-top .x-form-item label { width:70px ! important; } .x-form-invalid, textarea.x-form-invalid { background: none ! important; } #cal_event_description { margin-top:10px; } .admin_link { width:100%; text-align:center; } .ics_link { width:100%; text-align:center; } .tx-cal-controller .cal_required { color: red; } .tx-cal-controller .constrain { color: red; font-weight:bold; } #editorWrap1 textarea {display: block} /*Credits: By Santosh Setty (http://webdesigninfo.wordpress.com) */ /*Posted to: Dynamic Drive CSS Library (http://www.dynamicdrive.com/style/) */ #tx_cal_controller_create_element { width:540px; } .basictab ul{ margin: 4px; padding: 3px 0; margin-left: 0; font: bold 12px Verdana; border-bottom: 1px solid gray; list-style-type: none; text-align: left; /*set to left, center, or right to align the menu as desired*/ } .basictab li{ display: inline; margin: 0; } .basictab li a{ text-decoration: none; padding: 3px 7px; margin-right: 3px; border: 1px solid gray; border-bottom: none; background-color: #6699CC; color: #FFFFFF; } .basictab li a:visited{ color: #2d2b2b; } .basictab li a:hover, .basictab li a.current{ background-color: #557CA3; color: #FFFFFF; } .basictab li a:active{ color: #000000; } .tabcontainer{ clear: left; width:95%; /*width of 2nd level sub menus*/ height:1.5em; /*height of 2nd level sub menus. Set to largest\'s sub menu\'s height to avoid jittering.*/ } .tabcontent{ display:none; } #tx_cal_controller_create_element input[type="text"]:not([size]) { width: 6em; /* Desired width of input field */ } #tx_cal_controller_create_element .treelevel0{ display:block; margin-left: 70px; } #tx_cal_controller_create_element p { margin: 7px; } #tx_cal_controller_create_element .notify, #tx_cal_controller_create_element .shared, #tx_cal_controller_create_element .exception { display:block; margin-left: 140px; } #sc1 label { width:50px; } #allday { width:10px; } #category_tree { float:right; width:200px; } #until label, #by_day label, #by_monthday label, #by_month label{ margin-left: 50px; } #by_month label, #by_monthday label{ width: 230px; } #categoryEntries { height:80px; overflow:auto; } .reminderOffset { width: 2em !important; } '))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Cal\\Controller\\Controller->main', 'pidList' => '18,23', 'sessionPiVars' => 'page_id', 'calendarName' => 'My Calendar', 'allowSubscribe' => '1', 'subscribeFeUser' => '0', 'subscribeWithCaptcha' => '0', 'additionalWrapperClasses' => '', 'noWrapInBaseClass' => '0', 'dateConfig.' => array('dayPosition' => '2', 'monthPosition' => '1', 'yearPosition' => '0', 'splitSymbol' => '-', 'monthAbbreviationLength' => '3', 'weekdayAbbreviationLength' => '3'), 'dateParserConf.' => array('USmode' => '0'), 'date_stdWrap.' => array(), 'showRecordsWithoutDefaultTranslation' => '1', 'view.' => array('allowedViews' => '', 'customViews' => '', 'noViewFoundHelpText' => 'Controller function not found:', 'category' => '', 'calendar' => '', 'imagePath' => 'EXT:cal/Resources/Private/Templates/v1/img', 'javascriptPath' => 'EXT:cal/Resources/Private/Templates/v1/js', 'weekStartDay' => 'Monday', 'dayLinkTarget' => 'day', 'weekLinkTarget' => 'week', 'monthLinkTarget' => 'month', 'yearLinkTarget' => 'year', 'listLinkTarget' => 'list', 'locationLinkTarget' => 'location', 'organizerLinkTarget' => 'organizer', 'startLinkRange' => '-5 month', 'endLinkRange' => '+5 month', 'required' => '<span class="cal_required">*</span>', 'defaultLinkSetup' => 'TEXT', 'defaultLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1')), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'defaultViewLinkSetup' => 'TEXT', 'defaultViewLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'view', 'wrap' => '%%%|_VIEW%%%', 'case' => 'upper', 'required' => '1')))), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'backLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'showEditableEventsOnly' => '0', 'event.' => array('eventViewPid' => '', 'createEventViewPid' => '', 'editEventViewPid' => '', 'deleteEventViewPid' => '', 'eventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/event.tmpl', 'eventModelTemplate' => 'fileadmin/templates/cal_event_model.tmpl', 'subscriptionManagerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/subscription_manager.tmpl', 'substitutePageTitle' => '1', 'isPreview' => '0', 'categoryLink_stdWrap.' => array('wrap' => ''), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div><br />|</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>|</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'notify.' => array('subscriptionViewPid' => '', 'confirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyConfirm.tmpl', 'confirmTitle' => 'Please confirm the event monitoring on www.abc.com', 'unsubscribeConfirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyUnsubscribeConfirm.tmpl', 'unsubscribeConfirmTitle' => 'Please confirm the event monitoring stop on www.abc.com', 'all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'remind' => '1', 'remind.' => array('time' => '30', 'all.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/remind.tmpl', 'emailTitle' => 'Reminder for event: ###TITLE###'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'meeting.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/invite.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/inviteOnChange.tmpl', 'statusViewPid' => '', 'managerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/meetingManager.tmpl', 'lookingAhead' => '300000;'), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'title.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'notification.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'todo.' => array('todoInlineModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_inline_model.tmpl', 'todoSeparateModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_separate_model.tmpl', 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'location.' => array('locationViewPid' => '', 'createLocationViewPid' => '', 'editLocationViewPid' => '', 'deleteLocationViewPid' => '', 'locationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location.tmpl', 'locationModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location_model.tmpl', 'locationModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/location_partner_model.tmpl', 'locationModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/location_address_model.tmpl', 'maxDate' => '20200101', 'minDate' => '00000001', 'maxRecurringEvents' => '', 'substitutePageTitle' => '1', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'organizer.' => array('organizerViewPid' => '', 'createOrganizerViewPid' => '', 'editOrganizerViewPid' => '', 'deleteOrganizerViewPid' => '', 'organizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer.tmpl', 'organizerModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer_model.tmpl', 'organizerModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/organizer_partner_model.tmpl', 'organizerModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/organizer_address_model.tmpl', 'organizerModelTemplate4FEUser' => 'EXT:cal/Resources/Private/Templates/v1/organizer_feuser_model.tmpl', 'maxRecurringEvents' => '', 'maxDate' => '20200101', 'minDate' => '00000001', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'calendar.' => array('createCalendarViewPid' => '', 'editCalendarViewPid' => '', 'deleteCalendarViewPid' => '', 'calendar.' => array('addIcon' => '<img src="###IMG_PATH###/create_calendar.gif" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_CALENDAR%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_CALENDAR%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_CALENDAR%%%'))))))), 'category.' => array('createCategoryViewPid' => '', 'categoryViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'editCategoryViewPid' => '', 'deleteCategoryViewPid' => '', 'notify.' => array('all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted')), 'category.' => array('defaultHeaderStyle' => 'default_catheader', 'defaultBodyStyle' => 'default_catbody'), 'tree.' => array('calendar' => '', 'category' => '', 'calendarTitle' => 'TEXT', 'calendarTitle.' => array(), 'rootElement' => 'TEXT', 'rootElement.' => array('wrap' => '<table class="treelevel0"><tr><td>|</td></tr></table>'), 'selector' => 'TEXT', 'selector.' => array('wrap' => '<input type="checkbox" name="tx_cal_controller[category][]" value="###UID###" | />'), 'element' => '<span class="###HEADERSTYLE###_bullet ###HEADERSTYLE###_legend_bullet" >&bull;</span><span class="###HEADERSTYLE###_text">###TITLE###</span>', 'emptyElement' => '<br/><br/>', 'subElement' => '<br /><table class="treelevel###LEVEL###" id="treelevel###UID###">', 'subElement_wrap.' => array('wrap' => '<tr><td>|</td></tr>'), 'subElement_pre' => '</table>', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'alternativeSelect' => 'CASE', 'alternativeSelect.' => array('key.' => array('data' => 'field:cur'), 'default' => 'TEXT', 'default.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&tx_cal_controller[category]={field:uid}', 'additionalParams.' => array('insertData' => '1'), 'wrap' => '<li>|</li>')), 'TEXT', '1.' => array('current' => '1', 'wrap' => '<li class="cur"><em>|</em></li>')))), 'day.' => array('dayViewPid' => '', 'dayViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" width="16" height="20" border="0" align="right" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" width="16" height="20" border="0" align="left" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'dayStart' => '0700', 'dayEnd' => '2300', 'dynamic' => '0', 'gridLength' => '15', 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dayTemplate' => 'EXT:cal/Resources/Private/Templates/v1/day.tmpl', 'dayTimeCell' => '<tr><td rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height=\'%s\'></td>', 'dayTimeCell2' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'dayEventPre' => '<td rowspan="%s" align="left" valign="top"', 'dayEventPost' => '</td>', 'classDayborder' => 'class="dayborder"', 'classDayborder2' => 'class="dayborder2"', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'dayFinishRow' => '</tr>', 'dateFormatWeekList' => '%A, %b %d', 'dateFormatDay' => '%a, %b %d', 'timeFormatDay' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_day_starttime', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'week.' => array('weekViewPid' => '', 'weekViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_WEEK%%%'))))), 'prevWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_WEEK%%%'))))), 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" alt="%%%NEXT%%%" class="previousweek_arrow" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" alt="%%%PREV%%%" class="nextweek_arrow" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dynamic' => '0', 'weekTemplate' => 'EXT:cal/Resources/Private/Templates/v1/week.tmpl', 'weekDisplayFullHour' => '<tr><td colspan="4" rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekDisplayInbetween' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekday_stdWrap.' => array('wrap' => '<span class="V9BOLD">|</span>'), 'classWeekborder' => 'class="weekborder"', 'weekEventPre' => '<td rowspan="%s" align="left" valign="top"', 'weekEventPost' => '</td>', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'weekFinishRow' => '</tr>', 'dateFormatWeekList' => '%a, %b %d', 'dateFormatWeek' => '%B %d', 'timeFormatWeek' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_week_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_week_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'month.' => array('monthViewPid' => '', 'monthViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '3024000', 'endPointCorrection' => '3024000', 'monthTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month.tmpl', 'monthSmallTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_small.tmpl', 'monthMediumTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_medium.tmpl', 'monthLargeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_large.tmpl', 'monthMiniTemplate' => '###MONTH_SMALL|+0###', 'monthMakeMiniCal' => '0', 'navigation' => '1', 'horizontalSidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/calendar_nav.tmpl', 'showListInMonthView' => '0', 'useListEventRenderSettingsView' => 'list', 'dateFormatMonth' => '%B', 'dateFormatDay' => '%d', 'weekdayFormatSmallMonth' => '%a', 'weekdayLengthSmallMonth' => '2', 'weekdayFormatMediumMonth' => '%a', 'weekdayLengthMediumMonth' => '0', 'weekdayFormatLargeMonth' => '%A', 'weekdayLengthLargeMonth' => '0', 'smallLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'largeLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'nextMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_MONTH%%%'))))), 'prevMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_MONTH%%%'))))), 'monthSmallStyle' => 'monthSmallBasic', 'monthMediumStyle' => 'monthMediumBasic', 'monthLargeStyle' => 'monthLargeBasic', 'monthOffStyle' => 'monthOff', 'monthSelectedStyle' => 'monthSelected', 'monthSelectedWeekStyle' => 'monthSelectedWeek', 'monthDaySelectedWeekStyle' => 'monthSelectedWeek', 'monthWeekendStyle' => 'monthWeekend', 'monthTodayStyle' => 'monthToday', 'monthCurrentWeekStyle' => 'monthCurrentWeek', 'monthDayCurrentWeekStyle' => 'monthCurrentWeek', 'monthCornerStyle' => 'monthCorner', 'monthDayOfWeekStyle' => 'cal_day%s', 'eventDayStyle' => 'eventDay', 'monthWeekWithEventStyle' => 'monthWeekWithEvent', 'displayDate' => 'TEXT', 'displayDate.' => array('current' => '1', 'strftime' => '%B %Y'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|')), 'year.' => array('yearViewPid' => '', 'yearViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '518400', 'endPointCorrection' => '518400', 'yearTemplate' => 'EXT:cal/Resources/Private/Templates/v1/year.tmpl', 'nextYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_YEAR%%%'))))), 'prevYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_YEAR%%%'))))), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'dontShowOldEvents' => '0'), 'list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => '01 01 2007', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '-&nbsp; |'), 'teaser' => '< tt_content.text.20', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'stripHtml' => '0', 'field' => 'teaser'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'subscription.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))))), 'ics.' => array('showIcsLinks' => '{$plugin.tx_cal_controller.view.ics.showIcsLinks}', 'link_wrap' => '<div class="ics_link">%s</div>', 'icsViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1'), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCalendarLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCalendarLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCategoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCategoryLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsTemplate' => '{$plugin.tx_cal_controller.view.ics.icsTemplate}', 'icsListTemplate' => '{$plugin.tx_cal_controller.view.ics.icsListTemplate}', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'single_ics.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'admin.' => array('adminTemplate' => 'EXT:cal/Resources/Private/Templates/v1/admin.tmpl', 'adminViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'adminViewLink.' => array('current' => '0', 'value' => '<img src="###IMG_PATH###/config_calendar.gif" border="0" style="margin:2px;"/>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%ADMINISTRATION_VIEW%%%')))), 'outerWrap' => '<div class="admin_link">|</div>')), 'freeAndBusy.' => array('enable' => '0', 'headerStyle' => 'fnb_header', 'bodyStyle' => 'fnb_body', 'eventTitle' => 'Busy', 'defaultCalendarUid' => '0'), 'other.' => array('showLogin' => '0', 'loginPageId' => '', 'userFolderId' => '', 'showSearch' => '0', 'showGoto' => '0', 'showCategorySelection' => '0', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'showCalendarSelection' => '0', 'optionString' => '<option value="%s">%s</option>', 'showTomorrowEvents' => '0', 'tomorrowsEvents' => 'TEXT', 'tomorrowsEvents.' => array('current' => '1', 'wrap' => '|<br />'), 'legend_stdWrap.' => array('wrap' => '|<div style="text-align:right;margin-left:10px;"></div>'), 'showTodos' => '0', 'showJumps' => '0', 'dateFormatWeekJump' => '%b %d', 'listWeeks_stdWrap.' => array('wrap' => '<option value="|" >###WEEK1### - ###WEEK2###</option>'), 'listWeeksSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###WEEK1### - ###WEEK2###</option>'), 'listWeek_onlyShowCurrentYear' => '0', 'listWeek_totalWeekCount' => '20', 'listWeek_previousWeekCount' => '5', 'dateFormatMonthJump' => '%B %Y', 'listMonth_stdWrap.' => array('wrap' => '<option value="|" >###MONTH###</option>'), 'listMonthSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###MONTH###</option>'), 'listMonth_onlyShowCurrentYear' => '0', 'listMonth_totalMonthCount' => '12', 'listMonth_previousMonthCount' => '3', 'listMonth_referenceToday' => '1', 'dateFormatYearJump' => '%Y', 'listYear_stdWrap.' => array('wrap' => '<option value="|" >###YEAR###</option>'), 'listYearSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###YEAR###</option>'), 'listYear_totalYearCount' => '3', 'listYear_previousYearCount' => '1', 'sidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/sidebar.tmpl', 'searchBoxTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_box.tmpl', 'monthMenu.' => array('monthStart' => 'TEXT', 'monthStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:m}'), 'prioriCalc' => 'intval', 'thisMonth' => '1'), 'yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}'), 'prioriCalc' => 'intval'), 'count' => '5', 'format' => '%b %Y', 'month_stdWrap.' => array('wrap' => '<span>|</span>')), 'yearMenu.' => array('yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}-3'), 'prioriCalc' => 'intval', 'thisYear' => '1'), 'count' => '5', 'format' => '%Y', 'year_stdWrap.' => array('wrap' => '<span>|</span>'))), 'search.' => array('searchResultAllTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_all.tmpl', 'searchResultEventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_event.tmpl', 'searchResultLocationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_location.tmpl', 'searchResultOrganizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_organizer.tmpl', 'searchEventFieldList' => 'title,organizer,location,description', 'searchLocationFieldList' => 'name', 'searchOrganizerFieldList' => 'name', 'searchUserFieldList' => 'name', 'searchGroupFieldList' => 'title', 'startRange' => '19700102', 'endRange' => '20300101', 'searchLinkUrl' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchLinkUrl.' => array('current' => '', 'value' => '|', 'required' => '1', 'typolink.' => array('useCacheHash' => '1', 'returnLast' => 'url')), 'searchAllLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchAllLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '|%%%SEARCH%%%'))))), 'defaultValues.' => array('query' => '', 'start_day' => 'now', 'end_day' => '+1 month'), 'startSearchAfterSubmit' => '1', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_event.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%QUERY_FOR%%% %%%EVENT%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'search_location.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_organizer.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'search_all.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%SEARCH_EVERYTHING%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'searchEvent' => 'TEXT', 'searchEvent.' => array('current' => '1', 'wrap' => '<h2>%%%EVENTS%%%</h2>|'), 'searchLocation' => 'TEXT', 'searchLocation.' => array('current' => '1', 'wrap' => '<h2>%%%LOCATION%%%</h2>|'), 'searchOrganizer' => 'TEXT', 'searchOrganizer.' => array('current' => '1', 'wrap' => '<h2>%%%ORGANIZER%%%</h2>|'))), 'module.' => array('locationloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_locationloader.tmpl'), 'organizerloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_organizerloader.tmpl')), 'autoFetchTextFields' => 'imagecaption,imagealttext,imagetitletext,attachmentcaption', 'autoFetchTextSplitValue.' => array('char' => '10'), 'lib.' => array('list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0')), '_CSS_DEFAULT_STYLE' => ' /* Styled by TYPO3 Content Rendering Group - ben@netcreators.com 2007 */ /* START new classes and id\'s */ #month-header { width: 100%; margin-bottom: 7px; } #month-header-prevnext { float: left; } #month-header-icons { float: right; text-align: right; } #month-header-icons IMG, #month-header-prevnext IMG , #month-footer IMG{ border: 0px solid; } #month-footer { width: 735px; margin-bottom: 7px; } #month-footer-header { text-align: center; } table.month-small { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-weeknums { border-right:1px solid #AAAAAA; background-color:#EFEFEF; } .month-weekdays { border-bottom:1px solid #AAAAAA; background-color:#EFEFEF; } .month-small a:link,.monthoff a:visited { color: #000000; } .month-small th, .month-small td { padding: 2px; width: 22px; font-size: 10px; text-align: right; } .month-small th{ text-align: center; } .month-large { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-large th, .month-large td { border: 1px solid #A1A5A9; } .month-large .weekday { background-color: #EEE; height: 12px; } .month-large .weeknum { background-color: #A1A5A9; width: 22px; } .month-large .day { height: 100px; width: 100px; vertical-align: top; text-align: left; } .month-large .daylink { font-weight: bold; } .month-large .day div { text-align: right; padding-right: 3px; } .month-large .dayNum { border-bottom: none; background-color: #E8EEF7; text-align: right; } .month-large .days td { border-top: none; } .month-large .alldays td { border-top: none; border-bottom: none; } .month-large .alldays .event div{ -moz-border-radius:2px 2px 2px 2px; } /*For the time being calendar-nav remains a table - no proper alternatives came to my mind yet - suggestions?*/ #calendar-nav { } #calendar-nav td { vertical-align: top; } #calendar-nav td#previous { width: 175px; } #calendar-nav td#list { width: 188px; } #calendar-nav td#legend { width: 188px; } #calendar-nav td#next { width: 175px; } #link-ics, #link-admin { width: 100%; text-align: center; } /* END new classes and id\'s */ .calborder { background-color: #fff; border: 1px solid #A1A5A9; } .tbll { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_l.gif) no-repeat; width: 8px } .tblbot { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_m.gif) repeat-x; width: 100% } .tblr { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_r.gif) no-repeat; width: 8px } .rowOn { background-color: #cfc; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOn2 { background-color: #cfc; border-top: 1px solid #fff; } .rowOff { background-color: #E1E8F1; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOff2 { background-color: #E1E8F1; border-top: 1px solid #fff; } .rowToday { background-color: #cff; border-top: 1px solid #fff; border-left: 1px solid #fff; } .tx-cal-controller .padd { /*XXXpadding: 2px;*/ } .eventbg_1 { background-color: #557CA3; padding: 2px; } .eventbg_2 { background-color: #53A062; padding: 2px; } .eventbg_3 { background-color: #E84F25; padding: 2px; } .eventbg_4 { background-color: #B257A2; padding: 2px; } .eventbg_5 { background-color: #D42020; padding: 2px; } .eventbg_6 { background-color: #B88F0B; padding: 2px; } .eventbg_7 { background-color: #73738C; padding: 2px; } #allday a { font-size: 9px; color: #fff; font-weight: 900; text-decoration: none; } #allday a:hover { text-decoration: underline; } .eventbg2_1 { background-color: #6699CC; border: 1px solid #557CA3; } .eventbg2_2 { background-color: #4FC464; border: 1px solid #53A062; } .eventbg2_3 { background-color: #FF6D3B; border: 1px solid #E84F25; } .eventbg2_4 { background-color: #EA62D4; border: 1px solid #B257A2; } .eventbg2_5 { background-color: #FF5E56; border: 1px solid #D42020; } .eventbg2_6 { background-color: #CCB21F; border: 1px solid #B88F0B; } .eventbg2_7 { background-color: #9292A1; border: 1px solid #73738C; } .dayborder { background-color: #fff; border-top: 1px solid #A1A5A9; } .dayborder2 { background-color: #fff; border-top: 1px dashed #ccc; } .tx-cal-controller .title { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); padding: 5px; } .tx-cal-controller .title h1 { font-family: Helvetica,sans-serif; font-size: 18px; color: #000; margin: 0; } .monthBack { background-color: #A1A5A9; } .monthSmallBasic { text-align: left; vertical-align: top; } .monthMediumBasic { height: 20px; width: 20px; text-align: left; vertical-align: top; } .monthOff, .monthOff a:link,.monthOff a:visited { color: #BBBBBB ! important; } .monthWeekend { background-color: #FFFFEF; } .monthCurrentWeek { background-color: #F2F9FF; } .month-small th, .month-medium th, .month-large th { font-weight: normal; } .month-small th a:link, .month-small th a:visited, .month-medium th a:link, .month-medium th a:visited, .month-large th a:link, .month-large th a:visited{ font-weight: bold; color: #000000; } .monthToday { background:#99AABB none repeat scroll 0% !important; border-color:#556677 rgb(170, 187, 204) rgb(170, 187, 204) rgb(85, 102, 119) !important; border-style:solid !important; border-width:1px !important; } .monthToday a:link, .monthToday a:visited { color:#FFFFFF; } .monthCorner { border-bottom: 1px solid #AAAAAA; } .monthSelected, .monthSelectedWeek { background-color: #AACCEE; } .current td, .days .current td, tr.current th { background-color: #F2F9FF; } .selected { background-color: #AACCEE; } .monthEventTop { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); border-top: 1px solid #A1A5A9; } .monthEventLine { border-right: 1px dotted #A1A5A9; } .medtitle { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); height: 20px; margin-top: 3px; font-weight: 900; } .yearreg { background-color: #fff; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearoff { background-color: #F2F2F2; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearon { background-color: #F2F9FF; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearmonth { background-color: #ccc; } .yearweek { background-color: #eee; width: 30px; font-size: 9px; font-weight: 900; text-align: center; height: 15px; } .eventborder { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/day_title.gif); border: 1px #006699 solid; } .dateback { background-color: #eee; } .weekborder { border-top: 1px dashed #A1A5A9; border-right: 1px solid #A1A5A9; } .weekborder2 { border-right: 1px solid #A1A5A9; } .timeborder { border-right: 2px solid #A1A5A9; border-top: 1px dashed #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .timeborder2 { border-right: 2px solid #A1A5A9; border-top: 1px solid #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback img{ border:none; } .tx-cal-controller .sideback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); } a.psf { text-decoration: none; } a.psf:link { color: #0066FF; } a.psf:visited { color: #0066FF; } a.psf:active { color: #3366CC; } a.psf:hover { color: #000099; text-decoration: underline; } a.ps2 { text-decoration: underline; } a.ps2:link { color: #0066FF; } a.ps2:visited { color: #0066FF; } a.ps2:active { color: #3366CC; } a.ps2:hover { color: #000099; } a.ps3 { text-decoration: none; } a.ps3:link { color: #000; } a.ps3:visited { color: #000; } a.ps3:active { color: #000; } a.ps3:hover { color: #000; text-decoration: underline; } a.ps { text-decoration: none; } a.ps:link { color: #fff; } a.ps:visited { color: #fff; } a.ps:active { color: #fff; } a.ps:hover { color: #fff; text-decoration: underline; } .legend_calendar { font-size: 9px; color: #000000; margin-top: 1em; margin-left: 1em; } .V9 { text-align:left ! important; font-size: 9px; color: #000000; } .V9 ul { margin-bottom: 0px; padding-bottom: 0px; margin-left: 20px; padding-left: 0px; } .V9 li { margin-bottom: 0px; padding-bottom: 0px; } .V10W { font-size: 10px; color: #FFFFFF; text-decoration: none; } .V9W { font-size: 9px; color: #FFFFFF; text-decoration: none; } .V10WB { font-size: 10px; color: #FFFFFF; font-weight: 900; } .V9G { font-size: 9px; color: #666666; } .V10 { font-size: 10px; color: #000000; } .V9BOLD { font-size: 9px; font-weight: 900; } .G10 { font-size: 11px; color: #0066FF; } .G10B { font-size: 11px; color: #000000; } .G10BOLD { font-size: 11px; font-weight: 900; } .G10G { font-size: 11px; color: #A1A5A9; } .V12 { font-size: 12px; color: #000000; } .tx-cal-controller .eventfont { font-size: 11px; color: #FFFFFF; } .tx-cal-controller .query_style { font-size: 11px; width: 156px; margin-bottom: 0; } .tx-cal-controller .search_style { font-size: 12px; width: 134px; margin-bottom: 0; } .tx-cal-controller .login_style { font-size: 11px; width: 80px; margin-bottom: 0; } .tx-cal-controller .bold a:link { font-weight: bold; } .tx-cal-controller .bold a:active { font-weight: bold; } .tx-cal-controller .bold a:visited { font-weight: bold; } /* Pagebrowser */ .tx-cal-controller .pagebrowser span { padding: 0 2px; } /*------------ Category style package: default (blue) - start ------------*/ .default_categoryheader, .default_catheader { background-color: #557CA3; } .V9G .default_categoryheader, .V9G .deafult_catheader { background-color: transparent !important; color: #557CA3 !important; } .default_categoryheader_bullet, .default_catheader_bullet { color: #557CA3; font-size: 13px; } .default_categoryheader_text, .default_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .default_categoryheader_legend_bullet, .default_catheader_legend_bullet { margin-left: 3px; } .default_categoryheader_legend_text, .default_catheader_legend_text { } .default_categoryheader_allday, .default_catheader_allday { text-align: center; background-color: #6699CC; } .default_categorybody, .default_catbody { background-color: #6699CC; border: 1px solid #557CA3; color: #fff; } .default_categorybody a:link, .default_catbody a:link { color: #fff; } /*------------ Category style package: default (blue) - end ------------*/ /*------------ Category style package: green - start ------------*/ .green_catheader, .green_catheader_allday { background-color: #53A062; } .V9G .green_catheader { background-color: transparent !important; color: #53A062 !important; } .green_catheader_bullet { color: #4FC464; font-size: 13px; } .green_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .green_catheader_legend_bullet { margin-left: 3px; } .green_catheader_bullet_text { } .green_catheader_allday { text-align: center; background-color: #4FC464; } .green_catbody { background-color: #4FC464; border: 1px solid #53A062; color: #fff; } .green_catbody a:link { color: #fff; } /*------------ Category style package: green - end ------------*/ /*------------ Category style package: orange - start ------------*/ .orange_catheader, .orange_catheader_allday { background-color: #E84F25; } .V9G .orange_catheader { background-color: transparent !important; color: #E84F25 !important; } .orange_catheader_bullet { color: #FF6D3B; font-size: 13px; } .orange_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .orange_catheader_legend_bullet { margin-left: 3px; } .orange_catheader_bullet_text { } .orange_catheader_allday { text-align: center; background-color: #FF6D3B; } .orange_catbody { background-color: #FF6D3B; border: 1px solid #E84F25; color: #fff; } .orange_catbody a:link { color: #fff; } /*------------ Category style package: orange - end ------------*/ /*------------ Category style package: pink - start ------------*/ .pink_catheader, .pink_catheader_allday { background-color: #B257A2; } .V9G .pink_catheader { background-color: transparent !important; color: #B257A2 !important; } .pink_catheader_bullet { color: #EA62D4; font-size: 13px; } .pink_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .pink_catheader_legend_bullet { margin-left: 3px; } .pink_catheader_bullet_text { } .pink_catheader_allday { text-align: center; background-color: #EA62D4; } .pink_catbody { background-color: #EA62D4; border: 1px solid #B257A2; color: #fff; } .pink_catbody a:link { color: #fff; } /*------------ Category style package: pink - end ------------*/ /*------------ Category style package: red - start ------------*/ .red_catheader, .red_catheader_allday { background-color: #D42020; } .V9G .red_catheader { background-color: transparent !important; color: #D42020 !important; } .red_catheader_bullet { color: #FF5E56; font-size: 13px; } .red_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .red_catheader_legend_bullet { margin-left: 3px; } .red_catheader_bullet_text { } .red_catheader_allday { text-align: center; background-color: #FF5E56; } .red_catbody { background-color: #FF5E56; border: 1px solid #D42020; color: #fff; } .red_catbody a:link { color: #fff; } /*------------ Category style package: red - end ------------*/ /*------------ Category style package: yellow - start ------------*/ .yellow_catheader, .yellow_catheader_allday { background-color: #B88F0B; } .V9G .yellow_catheader { background-color: transparent !important; color: #B88F0B !important; } .yellow_catheader_bullet { color: #CCB21F; font-size: 13px; } .yellow_catheader_text{ color: #000000; font-size: 11px; margin-left: 3px; } .yellow_catheader_legend_bullet { margin-left: 3px; } .yellow_catheader_bullet_text { } .yellow_catheader_allday { text-align: center; background-color: #CCB21F; } .yellow_catbody { background-color: #CCB21F; border: 1px solid #B88F0B; color: #fff; } .yellow_catbody a:link { color: #fff; } /*------------ Category style package: yellow - end ------------*/ /*------------ Category style package: grey - start ------------*/ .grey_catheader, .grey_catheader_allday { background-color: #73738C; } .V9G .grey_catheader { background-color: transparent !important; color: #73738C !important; } .grey_catheader_bullet { color: #9292A1; font-size: 13px; } .grey_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .grey_catheader_legend_bullet { margin-left: 3px; } .grey_catheader_bullet_text { } .grey_catheader_allday { text-align: center; background-color: #9292A1; } .grey_catbody { background-color: #9292A1; border: 1px solid #73738C; color: #fff; } .grey_catbody a:link { color: #fff; } /*------------ Category style package: grey - end ------------*/ .tx-cal-controller .bold { /*font-weight: bold;*/ } .refresh_calendar { margin-right: 5px; } /* Start of moving stuff from the templat into this file */ .tx-cal-controller .weekview { margin: 0 auto; } .tx-cal-controller .weekview .nextweek_arrow, .tx-cal-controller .weekview .previousweek_arrow { width: 16px; height: 20px; border: 0px; text-align: left; } .previsousweek_arrow { text-align: right; } /*------------- free & busy styles ----------*/ .fnb_header { background-color: #444444; } .fnb_body { background-color: #888888; border: 1px solid #999999; color: #fff; } /*------------- list styles ------------*/ .tx-cal-controller .even { background-color: #eeeeee; } .tx-cal-controller .treelevel0 { } .tx-cal-controller .treelevel1 { margin-left:20px; } .tx-cal-controller .treelevel2 { margin-left:30px; } .tx-cal-controller label { display:block; float:left; margin-bottom: 0px; padding-right:1em; text-align:right; width:120px; } .tx-cal-controller fieldset div { clear:left; } .tx-cal-controller .noborder { border: none; } .tx-cal-controller .search-result { list-style: none; margin-left: 0px; padding-left: 0px; } .tx-cal-controller .search-result li { padding-bottom: 1em; } .tx-cal-controller .search_result li .even { background-color: #EEEEEE; } .tx_cal_controller img .mouse_pointer { cursor:pointer; }/* #cal_general,#cal_location,#cal_organizer,#cal_freq,#cal_exception,#cal_files,#cal_notify { height:210px; overflow:auto; padding:8px; }*/ .x-form-label-top .x-form-item label { width:70px ! important; } .x-form-invalid, textarea.x-form-invalid { background: none ! important; } #cal_event_description { margin-top:10px; } .admin_link { width:100%; text-align:center; } .ics_link { width:100%; text-align:center; } .tx-cal-controller .cal_required { color: red; } .tx-cal-controller .constrain { color: red; font-weight:bold; } #editorWrap1 textarea {display: block} /*Credits: By Santosh Setty (http://webdesigninfo.wordpress.com) */ /*Posted to: Dynamic Drive CSS Library (http://www.dynamicdrive.com/style/) */ #tx_cal_controller_create_element { width:540px; } .basictab ul{ margin: 4px; padding: 3px 0; margin-left: 0; font: bold 12px Verdana; border-bottom: 1px solid gray; list-style-type: none; text-align: left; /*set to left, center, or right to align the menu as desired*/ } .basictab li{ display: inline; margin: 0; } .basictab li a{ text-decoration: none; padding: 3px 7px; margin-right: 3px; border: 1px solid gray; border-bottom: none; background-color: #6699CC; color: #FFFFFF; } .basictab li a:visited{ color: #2d2b2b; } .basictab li a:hover, .basictab li a.current{ background-color: #557CA3; color: #FFFFFF; } .basictab li a:active{ color: #000000; } .tabcontainer{ clear: left; width:95%; /*width of 2nd level sub menus*/ height:1.5em; /*height of 2nd level sub menus. Set to largest\'s sub menu\'s height to avoid jittering.*/ } .tabcontent{ display:none; } #tx_cal_controller_create_element input[type="text"]:not([size]) { width: 6em; /* Desired width of input field */ } #tx_cal_controller_create_element .treelevel0{ display:block; margin-left: 70px; } #tx_cal_controller_create_element p { margin: 7px; } #tx_cal_controller_create_element .notify, #tx_cal_controller_create_element .shared, #tx_cal_controller_create_element .exception { display:block; margin-left: 140px; } #sc1 label { width:50px; } #allday { width:10px; } #category_tree { float:right; width:200px; } #until label, #by_day label, #by_monthday label, #by_month label{ margin-left: 50px; } #by_month label, #by_monthday label{ width: 230px; } #categoryEntries { height:80px; overflow:auto; } .reminderOffset { width: 2em !important; } '), 'plugin.tx_cal_controller')
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 719
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Cal\\Controller\\Controller->main', 'pidList' => '18,23', 'sessionPiVars' => 'page_id', 'calendarName' => 'My Calendar', 'allowSubscribe' => '1', 'subscribeFeUser' => '0', 'subscribeWithCaptcha' => '0', 'additionalWrapperClasses' => '', 'noWrapInBaseClass' => '0', 'dateConfig.' => array('dayPosition' => '2', 'monthPosition' => '1', 'yearPosition' => '0', 'splitSymbol' => '-', 'monthAbbreviationLength' => '3', 'weekdayAbbreviationLength' => '3'), 'dateParserConf.' => array('USmode' => '0'), 'date_stdWrap.' => array(), 'showRecordsWithoutDefaultTranslation' => '1', 'view.' => array('allowedViews' => '', 'customViews' => '', 'noViewFoundHelpText' => 'Controller function not found:', 'category' => '', 'calendar' => '', 'imagePath' => 'EXT:cal/Resources/Private/Templates/v1/img', 'javascriptPath' => 'EXT:cal/Resources/Private/Templates/v1/js', 'weekStartDay' => 'Monday', 'dayLinkTarget' => 'day', 'weekLinkTarget' => 'week', 'monthLinkTarget' => 'month', 'yearLinkTarget' => 'year', 'listLinkTarget' => 'list', 'locationLinkTarget' => 'location', 'organizerLinkTarget' => 'organizer', 'startLinkRange' => '-5 month', 'endLinkRange' => '+5 month', 'required' => '<span class="cal_required">*</span>', 'defaultLinkSetup' => 'TEXT', 'defaultLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1')), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'defaultViewLinkSetup' => 'TEXT', 'defaultViewLinkSetup.' => array('current' => '1', 'typolink.' => array('parameter.' => array('field' => 'link_parameter'), 'ATagParams.' => array('field' => 'link_ATagParams'), 'additionalParams.' => array('field' => 'link_additionalParams'), 'title.' => array('current' => '1', 'htmlSpecialChars' => '1', 'override.' => array('field' => 'title', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'view', 'wrap' => '%%%|_VIEW%%%', 'case' => 'upper', 'required' => '1')))), 'no_cache.' => array('field' => 'link_no_cache'), 'useCacheHash' => '1')), 'backLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'showEditableEventsOnly' => '0', 'event.' => array('eventViewPid' => '', 'createEventViewPid' => '', 'editEventViewPid' => '', 'deleteEventViewPid' => '', 'eventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/event.tmpl', 'eventModelTemplate' => 'fileadmin/templates/cal_event_model.tmpl', 'subscriptionManagerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/subscription_manager.tmpl', 'substitutePageTitle' => '1', 'isPreview' => '0', 'categoryLink_stdWrap.' => array('wrap' => ''), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>|</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div><br />|</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>|</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'notify.' => array('subscriptionViewPid' => '', 'confirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyConfirm.tmpl', 'confirmTitle' => 'Please confirm the event monitoring on www.abc.com', 'unsubscribeConfirmTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyUnsubscribeConfirm.tmpl', 'unsubscribeConfirmTitle' => 'Please confirm the event monitoring stop on www.abc.com', 'all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'remind' => '1', 'remind.' => array('time' => '30', 'all.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/remind.tmpl', 'emailTitle' => 'Reminder for event: ###TITLE###'), 'emailAddress' => '', 'emailReplyAddress' => '', 'fromName' => '', 'replyToName' => '', 'organisation' => '', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p'), 'meeting.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/invite.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/inviteOnChange.tmpl', 'statusViewPid' => '', 'managerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/meetingManager.tmpl', 'lookingAhead' => '300000;'), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'title.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'notification.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array())), 'todo.' => array('todoInlineModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_inline_model.tmpl', 'todoSeparateModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/todo_separate_model.tmpl', 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%COMPLETED_LABEL%%%:&nbsp; |</div>'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup')), 'location.' => array('locationViewPid' => '', 'createLocationViewPid' => '', 'editLocationViewPid' => '', 'deleteLocationViewPid' => '', 'locationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location.tmpl', 'locationModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/location_model.tmpl', 'locationModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/location_partner_model.tmpl', 'locationModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/location_address_model.tmpl', 'maxDate' => '20200101', 'minDate' => '00000001', 'maxRecurringEvents' => '', 'substitutePageTitle' => '1', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'organizer.' => array('organizerViewPid' => '', 'createOrganizerViewPid' => '', 'editOrganizerViewPid' => '', 'deleteOrganizerViewPid' => '', 'organizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer.tmpl', 'organizerModelTemplate' => 'EXT:cal/Resources/Private/Templates/v1/organizer_model.tmpl', 'organizerModelTemplate4Partner' => 'EXT:cal/Resources/Private/Templates/v1/organizer_partner_model.tmpl', 'organizerModelTemplate4Address' => 'EXT:cal/Resources/Private/Templates/v1/organizer_address_model.tmpl', 'organizerModelTemplate4FEUser' => 'EXT:cal/Resources/Private/Templates/v1/organizer_feuser_model.tmpl', 'maxRecurringEvents' => '', 'maxDate' => '20200101', 'minDate' => '00000001', 'event.' => array('dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'startdate' => '< plugin.tx_cal_controller.view.list.event.startdate', 'enddate' => '< plugin.tx_cal_controller.view.list.event.enddate', 'starttime' => '< plugin.tx_cal_controller.view.list.event.starttime', 'endtime' => '< plugin.tx_cal_controller.view.list.event.endtime'), 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'calendar.' => array('createCalendarViewPid' => '', 'editCalendarViewPid' => '', 'deleteCalendarViewPid' => '', 'calendar.' => array('addIcon' => '<img src="###IMG_PATH###/create_calendar.gif" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_CALENDAR%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_CALENDAR%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_CALENDAR%%%'))))))), 'category.' => array('createCategoryViewPid' => '', 'categoryViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'editCategoryViewPid' => '', 'deleteCategoryViewPid' => '', 'notify.' => array('all.' => array('onCreateTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnCreate.tmpl', 'onChangeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnChange.tmpl', 'onDeleteTemplate' => 'EXT:cal/Resources/Private/Templates/v1/notifyOnDelete.tmpl', 'onCreateEmailTitle' => 'The event ###TITLE### has been created', 'onChangeEmailTitle' => 'The event ###TITLE### has been changed', 'onDeleteEmailTitle' => 'The event ###TITLE### has been deleted')), 'category.' => array('defaultHeaderStyle' => 'default_catheader', 'defaultBodyStyle' => 'default_catbody'), 'tree.' => array('calendar' => '', 'category' => '', 'calendarTitle' => 'TEXT', 'calendarTitle.' => array(), 'rootElement' => 'TEXT', 'rootElement.' => array('wrap' => '<table class="treelevel0"><tr><td>|</td></tr></table>'), 'selector' => 'TEXT', 'selector.' => array('wrap' => '<input type="checkbox" name="tx_cal_controller[category][]" value="###UID###" | />'), 'element' => '<span class="###HEADERSTYLE###_bullet ###HEADERSTYLE###_legend_bullet" >&bull;</span><span class="###HEADERSTYLE###_text">###TITLE###</span>', 'emptyElement' => '<br/><br/>', 'subElement' => '<br /><table class="treelevel###LEVEL###" id="treelevel###UID###">', 'subElement_wrap.' => array('wrap' => '<tr><td>|</td></tr>'), 'subElement_pre' => '</table>', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'alternativeSelect' => 'CASE', 'alternativeSelect.' => array('key.' => array('data' => 'field:cur'), 'default' => 'TEXT', 'default.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&tx_cal_controller[category]={field:uid}', 'additionalParams.' => array('insertData' => '1'), 'wrap' => '<li>|</li>')), 'TEXT', '1.' => array('current' => '1', 'wrap' => '<li class="cur"><em>|</em></li>')))), 'day.' => array('dayViewPid' => '', 'dayViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" width="16" height="20" border="0" align="right" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" width="16" height="20" border="0" align="left" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'dayStart' => '0700', 'dayEnd' => '2300', 'dynamic' => '0', 'gridLength' => '15', 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dayTemplate' => 'EXT:cal/Resources/Private/Templates/v1/day.tmpl', 'dayTimeCell' => '<tr><td rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height=\'%s\'></td>', 'dayTimeCell2' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'dayEventPre' => '<td rowspan="%s" align="left" valign="top"', 'dayEventPost' => '</td>', 'classDayborder' => 'class="dayborder"', 'classDayborder2' => 'class="dayborder2"', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'dayFinishRow' => '</tr>', 'dateFormatWeekList' => '%A, %b %d', 'dateFormatDay' => '%a, %b %d', 'timeFormatDay' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_day_starttime', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'week.' => array('weekViewPid' => '', 'weekViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'nextWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_WEEK%%%'))))), 'prevWeekLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevWeekLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_WEEK%%%'))))), 'nextDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'legendNextDayLink' => '<img src="###IMG_PATH###/right_arrows.gif" alt="%%%NEXT%%%" class="previousweek_arrow" />', 'legendNextDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_DAY%%%'))))), 'prevDayLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'legendPrevDayLink' => '<img src="###IMG_PATH###/left_arrows.gif" alt="%%%PREV%%%" class="nextweek_arrow" />', 'legendPrevDayLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_DAY%%%'))))), 'startPointCorrection' => '5616000', 'endPointCorrection' => '5616000', 'dynamic' => '0', 'weekTemplate' => 'EXT:cal/Resources/Private/Templates/v1/week.tmpl', 'weekDisplayFullHour' => '<tr><td colspan="4" rowspan="%s" align="center" valign="top" width="60" class="timeborder">%s</td><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekDisplayInbetween' => '<tr><td bgcolor="#a1a5a9" width="1" height="%s"></td>', 'weekday_stdWrap.' => array('wrap' => '<span class="V9BOLD">|</span>'), 'classWeekborder' => 'class="weekborder"', 'weekEventPre' => '<td rowspan="%s" align="left" valign="top"', 'weekEventPost' => '</td>', 'normalCell' => '<td colspan="%s" %s>%s&nbsp;</td>', 'weekFinishRow' => '</tr>', 'dateFormatWeekList' => '%a, %b %d', 'dateFormatWeek' => '%B %d', 'timeFormatWeek' => '%I:%M %p', 'titleWrap' => 'COA', 'titleWrap.' => array('TEXT', '1.' => array('data' => 'register:cal_week_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_week_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0'), 'month.' => array('monthViewPid' => '', 'monthViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '3024000', 'endPointCorrection' => '3024000', 'monthTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month.tmpl', 'monthSmallTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_small.tmpl', 'monthMediumTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_medium.tmpl', 'monthLargeTemplate' => 'EXT:cal/Resources/Private/Templates/v1/month_large.tmpl', 'monthMiniTemplate' => '###MONTH_SMALL|+0###', 'monthMakeMiniCal' => '0', 'navigation' => '1', 'horizontalSidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/calendar_nav.tmpl', 'showListInMonthView' => '0', 'useListEventRenderSettingsView' => 'list', 'dateFormatMonth' => '%B', 'dateFormatDay' => '%d', 'weekdayFormatSmallMonth' => '%a', 'weekdayLengthSmallMonth' => '2', 'weekdayFormatMediumMonth' => '%a', 'weekdayLengthMediumMonth' => '0', 'weekdayFormatLargeMonth' => '%A', 'weekdayLengthLargeMonth' => '0', 'smallLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'largeLink_stdWrap.' => array('wrap' => '<span class="bold">|</span>'), 'nextMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_MONTH%%%'))))), 'prevMonthLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevMonthLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_MONTH%%%'))))), 'monthSmallStyle' => 'monthSmallBasic', 'monthMediumStyle' => 'monthMediumBasic', 'monthLargeStyle' => 'monthLargeBasic', 'monthOffStyle' => 'monthOff', 'monthSelectedStyle' => 'monthSelected', 'monthSelectedWeekStyle' => 'monthSelectedWeek', 'monthDaySelectedWeekStyle' => 'monthSelectedWeek', 'monthWeekendStyle' => 'monthWeekend', 'monthTodayStyle' => 'monthToday', 'monthCurrentWeekStyle' => 'monthCurrentWeek', 'monthDayCurrentWeekStyle' => 'monthCurrentWeek', 'monthCornerStyle' => 'monthCorner', 'monthDayOfWeekStyle' => 'cal_day%s', 'eventDayStyle' => 'eventDay', 'monthWeekWithEventStyle' => 'monthWeekWithEvent', 'displayDate' => 'TEXT', 'displayDate.' => array('current' => '1', 'strftime' => '%B %Y'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'strftime' => '%B %d')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'todo.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'dataWrap' => '<div>%%%TITLE_LABEL%%%:&nbsp; |</div>'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTTIME_LABEL%%%:&nbsp; |</div>'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'dataWrap' => '<div>%%%ENDTIME_LABEL%%%:&nbsp; |</div>'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%STATUS_LABEL%%%:&nbsp; |</div>'), 'priority' => 'TEXT', 'priority.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '<div>%%%PRIORITY_LABEL%%%:&nbsp; |</div>'), 'completed' => 'TEXT', 'completed.' => array('value' => '', 'required' => '1', 'current' => '1', 'wrap' => '&nbsp;(|%)'), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'todoLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup'), 'dontShowOldEvents' => '0', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|')), 'year.' => array('yearViewPid' => '', 'yearViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'startPointCorrection' => '518400', 'endPointCorrection' => '518400', 'yearTemplate' => 'EXT:cal/Resources/Private/Templates/v1/year.tmpl', 'nextYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT_YEAR%%%'))))), 'prevYearLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevYearLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%LAST_YEAR%%%'))))), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'crop' => '11|..'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'crop' => '15|..'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1', 'dataWrap' => '<div>%%%STARTDATE_LABEL%%%:&nbsp; |</div>'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1', 'dataWrap' => '<div>%%%ENDDATE_LABEL%%%:&nbsp; |</div>'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'dataWrap' => '<div>%%%TEASER_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'image' => '< tt_content.image.20', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1', 'dataWrap' => '<div>%%%IMAGE_LABEL%%%:&nbsp; |</div>'), 'maxW' => '240'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array()), 'dontShowOldEvents' => '0'), 'list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => '01 01 2007', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%e.%m.%Y', 'timeFormat' => '%R', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '-&nbsp; |'), 'teaser' => '< tt_content.text.20', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1')), 'stripHtml' => '0', 'field' => 'teaser'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'subscription.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))))), 'ics.' => array('showIcsLinks' => '{$plugin.tx_cal_controller.view.ics.showIcsLinks}', 'link_wrap' => '<div class="ics_link">%s</div>', 'icsViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1'), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCalendarLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCalendarLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsViewCategoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'icsViewCategoryLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('stdWrap.' => array('required' => '1', 'field' => 'title', 'wrap' => '|_'), 'dataWrap' => '|%%%ICS_VIEW%%%'))), 'useCacheHash' => '1', 'parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}')), 'outerWrap.' => array('field' => 'link_wrap')), 'icsTemplate' => '{$plugin.tx_cal_controller.view.ics.icsTemplate}', 'icsListTemplate' => '{$plugin.tx_cal_controller.view.ics.icsListTemplate}', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'single_ics.' => array('event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'CATEGORIES:|'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => 'TEXT', 'organizer.' => array('required' => '1', 'dataWrap' => 'ORGANIZER;CN="|":', 'current' => '1'), 'location' => 'TEXT', 'location.' => array('required' => '1', 'dataWrap' => 'LOCATION:|', 'current' => '1'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => 'TEXT', 'description.' => array('field' => 'description', 'required' => '1', 'stripHtml' => '1', 'dataWrap' => 'DESCRIPTION:|', 'current' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => 'URL:|', 'current' => '1'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10'))), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1', 'required' => '1', 'dataWrap' => 'SUMMARY:|'), 'attachment_url' => 'COA', 'attachment_url.' => array('FILES', '20.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'attachment'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10'))), 'FILES', '30.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('data' => 'getIndpEnv:TYPO3_SITE_URL', 'wrap' => 'ATTACH:|'), 'TEXT', '20.' => array('data' => 'file:current:publicUrl'), 'TEXT', '30.' => array('char' => '13'), 'TEXT', '40.' => array('char' => '10')))), 'geo' => 'COA', 'geo.' => array('if.' => array('isTrue.' => array('field' => 'location_id')), 'RECORDS', '10.' => array('source.' => array('field' => 'location_id'), 'tables' => 'tx_cal_location', 'conf.' => array('tx_cal_location' => 'COA', 'tx_cal_location.' => array('if.' => array('equals.' => array('field' => 'latitude'), 'value' => '0', 'negate' => '1'), 'TEXT', '20.' => array('field' => 'latitude', 'wrap' => 'GEO:|'), 'TEXT', '30.' => array('field' => 'longitude', 'wrap' => ';|')))))), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |')), 'admin.' => array('adminTemplate' => 'EXT:cal/Resources/Private/Templates/v1/admin.tmpl', 'adminViewLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'adminViewLink.' => array('current' => '0', 'value' => '<img src="###IMG_PATH###/config_calendar.gif" border="0" style="margin:2px;"/>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%ADMINISTRATION_VIEW%%%')))), 'outerWrap' => '<div class="admin_link">|</div>')), 'freeAndBusy.' => array('enable' => '0', 'headerStyle' => 'fnb_header', 'bodyStyle' => 'fnb_body', 'eventTitle' => 'Busy', 'defaultCalendarUid' => '0'), 'other.' => array('showLogin' => '0', 'loginPageId' => '', 'userFolderId' => '', 'showSearch' => '0', 'showGoto' => '0', 'showCategorySelection' => '0', 'categorySelectorSubmit' => '<input type="image" class="refresh_calendar" src="###IMG_PATH###/refresh.gif" alt="%%%REFRESH_LABEL%%%" title="%%%REFRESH_LABEL%%%">', 'showCalendarSelection' => '0', 'optionString' => '<option value="%s">%s</option>', 'showTomorrowEvents' => '0', 'tomorrowsEvents' => 'TEXT', 'tomorrowsEvents.' => array('current' => '1', 'wrap' => '|<br />'), 'legend_stdWrap.' => array('wrap' => '|<div style="text-align:right;margin-left:10px;"></div>'), 'showTodos' => '0', 'showJumps' => '0', 'dateFormatWeekJump' => '%b %d', 'listWeeks_stdWrap.' => array('wrap' => '<option value="|" >###WEEK1### - ###WEEK2###</option>'), 'listWeeksSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###WEEK1### - ###WEEK2###</option>'), 'listWeek_onlyShowCurrentYear' => '0', 'listWeek_totalWeekCount' => '20', 'listWeek_previousWeekCount' => '5', 'dateFormatMonthJump' => '%B %Y', 'listMonth_stdWrap.' => array('wrap' => '<option value="|" >###MONTH###</option>'), 'listMonthSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###MONTH###</option>'), 'listMonth_onlyShowCurrentYear' => '0', 'listMonth_totalMonthCount' => '12', 'listMonth_previousMonthCount' => '3', 'listMonth_referenceToday' => '1', 'dateFormatYearJump' => '%Y', 'listYear_stdWrap.' => array('wrap' => '<option value="|" >###YEAR###</option>'), 'listYearSelected_stdWrap.' => array('wrap' => '<option value="|" selected="selected">###YEAR###</option>'), 'listYear_totalYearCount' => '3', 'listYear_previousYearCount' => '1', 'sidebarTemplate' => 'EXT:cal/Resources/Private/Templates/v1/sidebar.tmpl', 'searchBoxTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_box.tmpl', 'monthMenu.' => array('monthStart' => 'TEXT', 'monthStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:m}'), 'prioriCalc' => 'intval', 'thisMonth' => '1'), 'yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}'), 'prioriCalc' => 'intval'), 'count' => '5', 'format' => '%b %Y', 'month_stdWrap.' => array('wrap' => '<span>|</span>')), 'yearMenu.' => array('yearStart' => 'TEXT', 'yearStart.' => array('current' => '1', 'setCurrent.' => array('dataWrap' => '{date:Y}-3'), 'prioriCalc' => 'intval', 'thisYear' => '1'), 'count' => '5', 'format' => '%Y', 'year_stdWrap.' => array('wrap' => '<span>|</span>'))), 'search.' => array('searchResultAllTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_all.tmpl', 'searchResultEventTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_event.tmpl', 'searchResultLocationTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_location.tmpl', 'searchResultOrganizerTemplate' => 'EXT:cal/Resources/Private/Templates/v1/search_organizer.tmpl', 'searchEventFieldList' => 'title,organizer,location,description', 'searchLocationFieldList' => 'name', 'searchOrganizerFieldList' => 'name', 'searchUserFieldList' => 'name', 'searchGroupFieldList' => 'title', 'startRange' => '19700102', 'endRange' => '20300101', 'searchLinkUrl' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchLinkUrl.' => array('current' => '', 'value' => '|', 'required' => '1', 'typolink.' => array('useCacheHash' => '1', 'returnLast' => 'url')), 'searchAllLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'searchAllLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '|%%%SEARCH%%%'))))), 'defaultValues.' => array('query' => '', 'start_day' => 'now', 'end_day' => '+1 month'), 'startSearchAfterSubmit' => '1', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%NAME_LABEL%%%:&nbsp; |</div>'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_event.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%QUERY_FOR%%% %%%EVENT%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0'), 'search_location.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'location.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_location')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_LOCATION%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_LOCATION%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_LOCATION%%%'))))))), 'search_organizer.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'organizer.' => array('map.' => array('apiKey' => '', 'mapWidth' => '300', 'mapHeight' => '300', 'showMapType' => '0', 'showScale' => '0', 'showInfoOnLoad' => '0', 'showDirections' => '1', 'showWrittenDirections' => '1', 'prefillAddress' => '1', 'zoomLevel' => '', 'centerLat' => '', 'centerLong' => ''), 'name' => 'TEXT', 'name.' => array('current' => '1', 'required' => '1'), 'street' => 'TEXT', 'street.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%STREET_LABEL%%%:&nbsp; |</div>'), 'city' => 'TEXT', 'city.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CITY_LABEL%%%:&nbsp; |</div>'), 'zip' => 'TEXT', 'zip.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ZIP_LABEL%%%:&nbsp; |</div>'), 'phone' => 'TEXT', 'phone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%PHONE_LABEL%%%:&nbsp; |</div>'), 'fax' => 'TEXT', 'fax.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%FAX_LABEL%%%:&nbsp; |</div>'), 'countryzone' => 'TEXT', 'countryzone.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'countryzoneStaticInfo' => 'TEXT', 'countryzoneStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'countryzone'), 'dataWrap' => '<div>%%%COUNTRYZONE_LABEL%%%:&nbsp; |</div>'), 'country' => 'TEXT', 'country.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'countryStaticInfo' => 'TEXT', 'countryStaticInfo.' => array('current' => '1', 'required' => '1', 'ifEmpty.' => array('field' => 'country'), 'dataWrap' => '<div>%%%COUNTRY_LABEL%%%:&nbsp; |</div>'), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'dataWrap' => '<div>%%%DESCRIPTION_LABEL%%%:&nbsp; |</div>'), 'email' => 'TEXT', 'email.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%EMAIL_LABEL%%%:&nbsp; |</div>'), 'link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('current' => '1')), 'required' => '1', 'dataWrap' => '<div>%%%LINK_LABEL%%%:&nbsp; |</div>'), 'image' => '< plugin.tx_cal_controller.view.event.event.image', 'image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_organizer')))), 'includeEventsInResult' => '1', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'eventLink' => 'TEXT', 'eventLink.' => array('current' => '1', 'dataWrap' => '<div>%%%RELATEDEVENTS_LABEL%%%:&nbsp; |</div>'), 'noLocationFound' => 'TEXT', 'noLocationFound.' => array('dataWrap' => '%%%NO_LOCATION_RESULTS%%%'), 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_ORGANIZER%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_ORGANIZER%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_ORGANIZER%%%'))))), 'contactInfoType' => '1', 'noOrganizerFound' => 'TEXT', 'noOrganizerFound.' => array('dataWrap' => '%%%NO_ORGANIZER_RESULTS%%%'))), 'search_all.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'TEXT', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d'), 'value' => '%%%SEARCH_EVERYTHING%%%'), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0', 'searchEvent' => 'TEXT', 'searchEvent.' => array('current' => '1', 'wrap' => '<h2>%%%EVENTS%%%</h2>|'), 'searchLocation' => 'TEXT', 'searchLocation.' => array('current' => '1', 'wrap' => '<h2>%%%LOCATION%%%</h2>|'), 'searchOrganizer' => 'TEXT', 'searchOrganizer.' => array('current' => '1', 'wrap' => '<h2>%%%ORGANIZER%%%</h2>|'))), 'module.' => array('locationloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_locationloader.tmpl'), 'organizerloader.' => array('template' => 'EXT:cal/Resources/Private/Templates/v1/module_organizerloader.tmpl')), 'autoFetchTextFields' => 'imagecaption,imagealttext,imagetitletext,attachmentcaption', 'autoFetchTextSplitValue.' => array('char' => '10'), 'lib.' => array('list.' => array('listTemplate' => 'EXT:cal/Resources/Private/Templates/v1/list.tmpl', 'listWithTeaserTemplate' => 'fileadmin/templates/cal_list_w_teaser.tmpl', 'alternatingLayoutMarkers.' => array('odd' => 'LIST_ODD', 'even' => 'LIST_EVEN'), 'restartAlternationAfterDayWrapper' => '0', 'restartAlternationAfterWeekWrapper' => '0', 'restartAlternationAfterMonthWrapper' => '0', 'restartAlternationAfterYearWrapper' => '0', 'listViewLink' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'starttime' => 'now', 'endtime' => '+1 month', 'order' => 'asc', 'hideStartedEvents' => '0', 'useGetdate' => '0', 'doNotUseGetdateTheFirstTime' => '0', 'useCustomStarttime' => '0', 'useCustomEndtime' => '0', 'customStarttimeRelativeToGetdate' => '0', 'customEndtimeRelativeToGetdate' => '0', 'maxEvents' => '100', 'maxRecurringEvents' => '', 'found_stdWrap.' => array('noTrimWrap' => '|<p class="found">| %%%SEARCH_FOUND%%%</p>|'), 'heading' => 'COA', 'heading.' => array('TEXT', '1.' => array('data' => 'register:cal_list_starttime', 'strftime' => '%B %d'), 'TEXT', '2.' => array('data' => 'register:cal_list_endtime', 'wrap' => '&nbsp;-&nbsp;|', 'required' => '1', 'strftime' => '%B %d')), 'enableDayWrapper' => '0', 'dayWrapperFormat' => '%d. %B', 'dayWrapper' => 'COA', 'dayWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'dayWrapperEnd' => 'TEXT', 'dayWrapperEnd.' => array('value' => ''), 'enableWeekWrapper' => '0', 'weekWrapperFormat' => '%U', 'weekWrapper' => 'COA', 'weekWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|. (Week)</dt>')), 'weekWrapperEnd' => 'TEXT', 'weekWrapperEnd.' => array('value' => ''), 'enableMonthWrapper' => '0', 'monthWrapperFormat' => '%B %Y', 'monthWrapper' => 'COA', 'monthWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'monthWrapperEnd' => 'TEXT', 'monthWrapperEnd.' => array('value' => ''), 'enableYearWrapper' => '0', 'yearWrapperFormat' => '%Y', 'yearWrapper' => 'COA', 'yearWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#CCCCCC;">|</dt>')), 'yearWrapperEnd' => 'TEXT', 'yearWrapperEnd.' => array('value' => ''), 'enableCategoryWrapper' => '0', 'categoryWrapper' => 'COA', 'categoryWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt class="###CATEGORY_STYLE###">|</dt>')), 'noCategoryWrapper' => 'TEXT', 'noCategoryWrapper.' => array('value' => '<dt style="background-color:#999999;">No category</dt>', 'uid' => '999'), 'enableCalendarWrapper' => '0', 'calendarWrapper' => 'COA', 'calendarWrapper.' => array('TEXT', '10.' => array('current' => '1', 'required' => '1', 'wrap' => '<dt style="background-color:#000099;">|</dt>')), 'enableSectionMenu' => '0', 'sectionMenuItem' => '< plugin.tx_cal_controller.view.defaultViewLinkSetup', 'sectionMenu' => 'TEXT', 'sectionMenu.' => array('current' => '1'), 'monthSectionMenuFormat' => '%B', 'pageBrowser.' => array('pagesCount' => '', 'recordsPerPage' => '10', 'usePageBrowser' => '1', 'onlyShowIfNeeded' => '0', 'useType' => 'default', 'pointer' => 'offset', 'default.' => array('actPage_stdWrap.' => array('wrap' => '<span><b>|</b></span>'), 'nextLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'nextLink.' => array('current' => '0', 'value' => '&gt;&gt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%NEXT%%%')))), 'wrap' => '<span>|</span>'), 'prevLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'prevLink.' => array('current' => '0', 'value' => '&lt;&lt;', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PREV%%%')))), 'wrap' => '<span>|</span>'), 'pageLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'pageLink.' => array('wrap' => '<span>|</span>', 'typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%PAGE%%% {current:1}'))))), 'spacer' => 'TEXT', 'spacer.' => array('value' => '...', 'wrap' => '<span><b>|</b></span>')), 'piPageBrowser.' => array('showResultCount' => '1', 'showPBrowserText' => '0', 'tableParams' => 'cellpadding="2" align="center"', 'pagefloat' => 'center', 'showFirstLast' => '1', 'showRange' => '1', 'dontLinkActivePage' => '1', 'alwaysPrev' => '0', 'hscText' => '1', 'browseBoxWrap' => '', 'showResultsWrap' => '|<br />', 'browseLinksWrap' => '|', 'showResultsNumbersWrap' => '', 'disabledLinkWrap' => '<span style="color:#bbb;">|</span>', 'inactiveLinkWrap' => '|', 'activeLinkWrap' => '<strong>|</strong>')), 'event.' => array('useTitleForLinkTitle' => '1', 'ownLinkTitleText' => 'TEXT', 'ownLinkTitleText.' => array(), 'eventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'moreLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%MORE_LABEL%%%'))))), 'dontShowEndDateIfEqualsStartDate' => '1', 'dontShowEndDateIfEqualsStartDateAllday' => '1', 'differentStyleIfOwnEvent' => '0', 'headerStyleOfOwnEvent' => 'green_catheader', 'bodyStyleOfOwnEvent' => 'green_catbody', 'defaultEventLength' => '1800', 'todoIcon' => '<img src="###IMG_PATH###/%s.gif" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'recurringIcon' => '<img src="###IMG_PATH###/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" />&nbsp;', 'addIcon' => '<img src="###IMG_PATH###/add_small.png" border="0"/>', 'editIcon' => '<img src="###IMG_PATH###/edit.gif" border="0"/>', 'deleteIcon' => '<img src="###IMG_PATH###/delete.gif" border="0"/>', 'categoryIcon' => '<img src="%%%CATICON%%%" border="0" height="24" title="%%%CATTITLE%%%"/>', 'categoryIconDefault' => '&bull;', 'addLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'addLink.' => array('typolink.' => array('useCacheHash' => '1', 'title.' => array('override.' => array('override.' => array('dataWrap' => '%%%CREATE_EVENT%%%'))))), 'editLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'editLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%EDIT_EVENT%%%'))))), 'deleteLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'deleteLink.' => array('typolink.' => array('title.' => array('override.' => array('override.' => array('dataWrap' => '%%%DELETE_EVENT%%%'))))), 'eventDateFormat' => '%B %d', 'dateFormat' => '%B %d', 'timeFormat' => '%I:%M %p', 'cruser_name' => 'TEXT', 'cruser_name.' => array('current' => '1', 'dataWrap' => '<div>CrUserName:&nbsp; |</div>', 'db_field' => 'username'), 'calendarStyle' => 'TEXT', 'calendarStyle.' => array('current' => '1', 'wrap' => 'calendar|'), 'title' => 'TEXT', 'title.' => array('current' => '1'), 'alldayTitle' => 'TEXT', 'alldayTitle.' => array('current' => '1'), 'startdate' => 'TEXT', 'startdate.' => array('current' => '1'), 'enddate' => 'TEXT', 'enddate.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'starttime' => 'TEXT', 'starttime.' => array('current' => '1'), 'endtime' => 'TEXT', 'endtime.' => array('current' => '1', 'noTrimWrap' => '| - ||', 'required' => '1'), 'category' => 'TEXT', 'category.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'category_link' => 'TEXT', 'category_link.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CATEGORY%%%:&nbsp; |</div>'), 'categoryLink_stdWrap.' => array('wrap' => ''), 'categoryLink_splitChar' => 'TEXT', 'categoryLink_splitChar.' => array('value' => ',', 'noTrimWrap' => '|| |'), 'categoryLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'calendar_title' => 'TEXT', 'calendar_title.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%CALENDAR%%%:&nbsp; |</div>'), 'organizer' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'organizer.' => array('required' => '1', 'dataWrap' => '<div>%%%ORGANIZER%%%:&nbsp; |</div>'), 'location' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'location.' => array('required' => '1', 'dataWrap' => '<div>%%%LOCATION%%%:&nbsp; |</div>'), 'teaser' => 'TEXT', 'teaser.' => array('current' => '1', 'required' => '1', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'teaser')), 'field' => 'description', 'required' => '1', 'crop' => '150|...|1'))), 'description' => '< tt_content.text.20', 'description.' => array('field' => 'description', 'required' => '1', 'crop' => '100|...|1', 'stripHtml' => '1'), 'description_image' => '< tt_content.image.20', 'description_image.' => array('preRenderRegisters.' => array('allImageCaptions.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'), 'renderObj.' => array('data' => 'title')))), 'imgList.' => array('cObject.' => array('references.' => array('table' => 'tx_cal_event', 'uid.' => array('data' => 'uid'), 'fieldName' => 'image'))), 'textPos.' => array('override' => '17'), 'layout.' => array('key.' => array('override' => '17')), '1.' => array('imageLinkWrap.' => array('enable.' => array('field' => 'uid'), 'typolink.' => array('ATagParams.' => array('dataWrap' => 'class="{$styles.content.imgtext.linkWrap.lightboxCssClass}" rel="{$styles.content.imgtext.linkWrap.lightboxRelAttribute}"')))), 'imgMax' => '4', 'stdWrap.' => array('required' => '1'), 'maxW' => '240', 'text' => '< tt_content.textpic.20.text', 'text.' => array('field' => 'description')), 'preview' => '< plugin.tx_cal_controller.view.event.event.description', 'preview.' => array('crop' => '100|...|1', 'stripHtml' => '1'), 'attachment' => '< tt_content.uploads', 'attachment.' => array('layout' => '1', 'showFileSize' => '1', 'filePath' => 'uploads/tx_cal/media/', '20.' => array('stdWrap.' => array('if.' => array('isTrue.' => array('field' => 'media')), 'dataWrap' => '<div>%%%ATTACHMENT_LABEL%%%:&nbsp;|</div>'))), 'attendee' => 'TEXT', 'attendee.' => array('current' => '1', 'required' => '1', 'dataWrap' => '<div>%%%ATTENDEE%%%:&nbsp; |</div>'), 'status' => 'TEXT', 'status.' => array('value' => ''), 'priority' => 'TEXT', 'priority.' => array('value' => ''), 'completed' => 'TEXT', 'completed.' => array('value' => ''), 'defaultFeUserDisplayName' => 'TEXT', 'defaultFeUserDisplayName.' => array('field' => 'name', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'name')), 'field' => 'username', 'required' => '1')), 'required' => '1'), 'defaultFeGroupDisplayName' => 'TEXT', 'defaultFeGroupDisplayName.' => array('field' => 'title', 'override.' => array('cObject' => 'TEXT', 'cObject.' => array('if.' => array('isFalse.' => array('field' => 'title')), 'field' => 'description', 'required' => '1')), 'required' => '1'), 'ext_url' => 'TEXT', 'ext_url.' => array('field' => 'ext_url', 'typolink.' => array('parameter.' => array('field' => 'ext_url')), 'required' => '1', 'dataWrap' => '<div>%%%EXTURL_LABEL%%%:&nbsp; |</div>'), 'attendeeIcon' => '<img src="###IMG_PATH###/%s.png" alt="%s" title="%s" class="no_border"/>', 'isMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'isNotMonitoringEventLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'declineMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'acceptMeetingLink' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'acceptMeetingLink.' => array('typolink.' => array('title.' => array('dataWrap' => '%%%MEETING_CHANGESTATUS%%%'))), 'ics' => '< plugin.tx_cal_controller.view.defaultLinkSetup', 'ics.' => array('current' => '0', 'value' => '$5&xs2', 'required' => '1', 'typolink.' => array('parameter.' => array('wrap' => '|,{$plugin.tx_cal_controller.view.ics.typeNum}'), 'title.' => array('override.' => array('override' => '%%%ICSLINK_LABEL%%%')), 'useCacheHash' => '1'), 'wrap' => '<div>|</div>'), 'noEventFound' => 'TEXT', 'noEventFound.' => array('value' => '%%%NO_RESULTS%%%', 'wrap' => '<p>|</p>'), 'includeEventsInResult' => '0', 'includeEventsInResult.' => array('reverse' => '0', 'starttime' => 'now', 'endtime' => '+3 month'), 'rel_startdate' => 'TEXT', 'rel_startdate.' => array('field' => 'start', 'strftime' => '%m.%d.%Y'), 'rel_title' => 'TEXT', 'rel_title.' => array('field' => 'title'), 'additionalCategoryWhere' => 'TEXT', 'additionalCategoryWhere.' => array(), 'image' => 'IMAGE', 'image.' => array('file.' => array('import' => 'uploads/tx_cal/pics/', 'import.' => array('current' => '1', 'listNum' => '0'), 'maxW' => '120', 'maxH' => '{$plugin.tx_cal_controller.listMaxH}'), 'altText.' => array('field' => 'imagealttext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')), 'titleText.' => array('field' => 'imagetitletext', 'listNum' => '0', 'listNum.' => array('splitChar' => '10')))), 'dontShowOldEvents' => '0')), '_CSS_DEFAULT_STYLE' => ' /* Styled by TYPO3 Content Rendering Group - ben@netcreators.com 2007 */ /* START new classes and id\'s */ #month-header { width: 100%; margin-bottom: 7px; } #month-header-prevnext { float: left; } #month-header-icons { float: right; text-align: right; } #month-header-icons IMG, #month-header-prevnext IMG , #month-footer IMG{ border: 0px solid; } #month-footer { width: 735px; margin-bottom: 7px; } #month-footer-header { text-align: center; } table.month-small { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-weeknums { border-right:1px solid #AAAAAA; background-color:#EFEFEF; } .month-weekdays { border-bottom:1px solid #AAAAAA; background-color:#EFEFEF; } .month-small a:link,.monthoff a:visited { color: #000000; } .month-small th, .month-small td { padding: 2px; width: 22px; font-size: 10px; text-align: right; } .month-small th{ text-align: center; } .month-large { border: 1px solid #A1A5A9; border-collapse: collapse; } .month-large th, .month-large td { border: 1px solid #A1A5A9; } .month-large .weekday { background-color: #EEE; height: 12px; } .month-large .weeknum { background-color: #A1A5A9; width: 22px; } .month-large .day { height: 100px; width: 100px; vertical-align: top; text-align: left; } .month-large .daylink { font-weight: bold; } .month-large .day div { text-align: right; padding-right: 3px; } .month-large .dayNum { border-bottom: none; background-color: #E8EEF7; text-align: right; } .month-large .days td { border-top: none; } .month-large .alldays td { border-top: none; border-bottom: none; } .month-large .alldays .event div{ -moz-border-radius:2px 2px 2px 2px; } /*For the time being calendar-nav remains a table - no proper alternatives came to my mind yet - suggestions?*/ #calendar-nav { } #calendar-nav td { vertical-align: top; } #calendar-nav td#previous { width: 175px; } #calendar-nav td#list { width: 188px; } #calendar-nav td#legend { width: 188px; } #calendar-nav td#next { width: 175px; } #link-ics, #link-admin { width: 100%; text-align: center; } /* END new classes and id\'s */ .calborder { background-color: #fff; border: 1px solid #A1A5A9; } .tbll { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_l.gif) no-repeat; width: 8px } .tblbot { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_m.gif) repeat-x; width: 100% } .tblr { background: url(../typo3conf/ext/cal/Resources/Public/v1/img/shadow_r.gif) no-repeat; width: 8px } .rowOn { background-color: #cfc; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOn2 { background-color: #cfc; border-top: 1px solid #fff; } .rowOff { background-color: #E1E8F1; border-top: 1px solid #fff; border-left: 1px solid #fff; } .rowOff2 { background-color: #E1E8F1; border-top: 1px solid #fff; } .rowToday { background-color: #cff; border-top: 1px solid #fff; border-left: 1px solid #fff; } .tx-cal-controller .padd { /*XXXpadding: 2px;*/ } .eventbg_1 { background-color: #557CA3; padding: 2px; } .eventbg_2 { background-color: #53A062; padding: 2px; } .eventbg_3 { background-color: #E84F25; padding: 2px; } .eventbg_4 { background-color: #B257A2; padding: 2px; } .eventbg_5 { background-color: #D42020; padding: 2px; } .eventbg_6 { background-color: #B88F0B; padding: 2px; } .eventbg_7 { background-color: #73738C; padding: 2px; } #allday a { font-size: 9px; color: #fff; font-weight: 900; text-decoration: none; } #allday a:hover { text-decoration: underline; } .eventbg2_1 { background-color: #6699CC; border: 1px solid #557CA3; } .eventbg2_2 { background-color: #4FC464; border: 1px solid #53A062; } .eventbg2_3 { background-color: #FF6D3B; border: 1px solid #E84F25; } .eventbg2_4 { background-color: #EA62D4; border: 1px solid #B257A2; } .eventbg2_5 { background-color: #FF5E56; border: 1px solid #D42020; } .eventbg2_6 { background-color: #CCB21F; border: 1px solid #B88F0B; } .eventbg2_7 { background-color: #9292A1; border: 1px solid #73738C; } .dayborder { background-color: #fff; border-top: 1px solid #A1A5A9; } .dayborder2 { background-color: #fff; border-top: 1px dashed #ccc; } .tx-cal-controller .title { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); padding: 5px; } .tx-cal-controller .title h1 { font-family: Helvetica,sans-serif; font-size: 18px; color: #000; margin: 0; } .monthBack { background-color: #A1A5A9; } .monthSmallBasic { text-align: left; vertical-align: top; } .monthMediumBasic { height: 20px; width: 20px; text-align: left; vertical-align: top; } .monthOff, .monthOff a:link,.monthOff a:visited { color: #BBBBBB ! important; } .monthWeekend { background-color: #FFFFEF; } .monthCurrentWeek { background-color: #F2F9FF; } .month-small th, .month-medium th, .month-large th { font-weight: normal; } .month-small th a:link, .month-small th a:visited, .month-medium th a:link, .month-medium th a:visited, .month-large th a:link, .month-large th a:visited{ font-weight: bold; color: #000000; } .monthToday { background:#99AABB none repeat scroll 0% !important; border-color:#556677 rgb(170, 187, 204) rgb(170, 187, 204) rgb(85, 102, 119) !important; border-style:solid !important; border-width:1px !important; } .monthToday a:link, .monthToday a:visited { color:#FFFFFF; } .monthCorner { border-bottom: 1px solid #AAAAAA; } .monthSelected, .monthSelectedWeek { background-color: #AACCEE; } .current td, .days .current td, tr.current th { background-color: #F2F9FF; } .selected { background-color: #AACCEE; } .monthEventTop { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); border-top: 1px solid #A1A5A9; } .monthEventLine { border-right: 1px dotted #A1A5A9; } .medtitle { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); height: 20px; margin-top: 3px; font-weight: 900; } .yearreg { background-color: #fff; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearoff { background-color: #F2F2F2; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearon { background-color: #F2F9FF; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } .yearmonth { background-color: #ccc; } .yearweek { background-color: #eee; width: 30px; font-size: 9px; font-weight: 900; text-align: center; height: 15px; } .eventborder { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/day_title.gif); border: 1px #006699 solid; } .dateback { background-color: #eee; } .weekborder { border-top: 1px dashed #A1A5A9; border-right: 1px solid #A1A5A9; } .weekborder2 { border-right: 1px solid #A1A5A9; } .timeborder { border-right: 2px solid #A1A5A9; border-top: 1px dashed #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .timeborder2 { border-right: 2px solid #A1A5A9; border-top: 1px solid #A1A5A9; background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/time_bg.gif); } .tx-cal-controller .navback img{ border:none; } .tx-cal-controller .sideback { background-image: url(../typo3conf/ext/cal/Resources/Public/v1/img/side_bg.gif); } a.psf { text-decoration: none; } a.psf:link { color: #0066FF; } a.psf:visited { color: #0066FF; } a.psf:active { color: #3366CC; } a.psf:hover { color: #000099; text-decoration: underline; } a.ps2 { text-decoration: underline; } a.ps2:link { color: #0066FF; } a.ps2:visited { color: #0066FF; } a.ps2:active { color: #3366CC; } a.ps2:hover { color: #000099; } a.ps3 { text-decoration: none; } a.ps3:link { color: #000; } a.ps3:visited { color: #000; } a.ps3:active { color: #000; } a.ps3:hover { color: #000; text-decoration: underline; } a.ps { text-decoration: none; } a.ps:link { color: #fff; } a.ps:visited { color: #fff; } a.ps:active { color: #fff; } a.ps:hover { color: #fff; text-decoration: underline; } .legend_calendar { font-size: 9px; color: #000000; margin-top: 1em; margin-left: 1em; } .V9 { text-align:left ! important; font-size: 9px; color: #000000; } .V9 ul { margin-bottom: 0px; padding-bottom: 0px; margin-left: 20px; padding-left: 0px; } .V9 li { margin-bottom: 0px; padding-bottom: 0px; } .V10W { font-size: 10px; color: #FFFFFF; text-decoration: none; } .V9W { font-size: 9px; color: #FFFFFF; text-decoration: none; } .V10WB { font-size: 10px; color: #FFFFFF; font-weight: 900; } .V9G { font-size: 9px; color: #666666; } .V10 { font-size: 10px; color: #000000; } .V9BOLD { font-size: 9px; font-weight: 900; } .G10 { font-size: 11px; color: #0066FF; } .G10B { font-size: 11px; color: #000000; } .G10BOLD { font-size: 11px; font-weight: 900; } .G10G { font-size: 11px; color: #A1A5A9; } .V12 { font-size: 12px; color: #000000; } .tx-cal-controller .eventfont { font-size: 11px; color: #FFFFFF; } .tx-cal-controller .query_style { font-size: 11px; width: 156px; margin-bottom: 0; } .tx-cal-controller .search_style { font-size: 12px; width: 134px; margin-bottom: 0; } .tx-cal-controller .login_style { font-size: 11px; width: 80px; margin-bottom: 0; } .tx-cal-controller .bold a:link { font-weight: bold; } .tx-cal-controller .bold a:active { font-weight: bold; } .tx-cal-controller .bold a:visited { font-weight: bold; } /* Pagebrowser */ .tx-cal-controller .pagebrowser span { padding: 0 2px; } /*------------ Category style package: default (blue) - start ------------*/ .default_categoryheader, .default_catheader { background-color: #557CA3; } .V9G .default_categoryheader, .V9G .deafult_catheader { background-color: transparent !important; color: #557CA3 !important; } .default_categoryheader_bullet, .default_catheader_bullet { color: #557CA3; font-size: 13px; } .default_categoryheader_text, .default_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .default_categoryheader_legend_bullet, .default_catheader_legend_bullet { margin-left: 3px; } .default_categoryheader_legend_text, .default_catheader_legend_text { } .default_categoryheader_allday, .default_catheader_allday { text-align: center; background-color: #6699CC; } .default_categorybody, .default_catbody { background-color: #6699CC; border: 1px solid #557CA3; color: #fff; } .default_categorybody a:link, .default_catbody a:link { color: #fff; } /*------------ Category style package: default (blue) - end ------------*/ /*------------ Category style package: green - start ------------*/ .green_catheader, .green_catheader_allday { background-color: #53A062; } .V9G .green_catheader { background-color: transparent !important; color: #53A062 !important; } .green_catheader_bullet { color: #4FC464; font-size: 13px; } .green_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .green_catheader_legend_bullet { margin-left: 3px; } .green_catheader_bullet_text { } .green_catheader_allday { text-align: center; background-color: #4FC464; } .green_catbody { background-color: #4FC464; border: 1px solid #53A062; color: #fff; } .green_catbody a:link { color: #fff; } /*------------ Category style package: green - end ------------*/ /*------------ Category style package: orange - start ------------*/ .orange_catheader, .orange_catheader_allday { background-color: #E84F25; } .V9G .orange_catheader { background-color: transparent !important; color: #E84F25 !important; } .orange_catheader_bullet { color: #FF6D3B; font-size: 13px; } .orange_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .orange_catheader_legend_bullet { margin-left: 3px; } .orange_catheader_bullet_text { } .orange_catheader_allday { text-align: center; background-color: #FF6D3B; } .orange_catbody { background-color: #FF6D3B; border: 1px solid #E84F25; color: #fff; } .orange_catbody a:link { color: #fff; } /*------------ Category style package: orange - end ------------*/ /*------------ Category style package: pink - start ------------*/ .pink_catheader, .pink_catheader_allday { background-color: #B257A2; } .V9G .pink_catheader { background-color: transparent !important; color: #B257A2 !important; } .pink_catheader_bullet { color: #EA62D4; font-size: 13px; } .pink_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .pink_catheader_legend_bullet { margin-left: 3px; } .pink_catheader_bullet_text { } .pink_catheader_allday { text-align: center; background-color: #EA62D4; } .pink_catbody { background-color: #EA62D4; border: 1px solid #B257A2; color: #fff; } .pink_catbody a:link { color: #fff; } /*------------ Category style package: pink - end ------------*/ /*------------ Category style package: red - start ------------*/ .red_catheader, .red_catheader_allday { background-color: #D42020; } .V9G .red_catheader { background-color: transparent !important; color: #D42020 !important; } .red_catheader_bullet { color: #FF5E56; font-size: 13px; } .red_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .red_catheader_legend_bullet { margin-left: 3px; } .red_catheader_bullet_text { } .red_catheader_allday { text-align: center; background-color: #FF5E56; } .red_catbody { background-color: #FF5E56; border: 1px solid #D42020; color: #fff; } .red_catbody a:link { color: #fff; } /*------------ Category style package: red - end ------------*/ /*------------ Category style package: yellow - start ------------*/ .yellow_catheader, .yellow_catheader_allday { background-color: #B88F0B; } .V9G .yellow_catheader { background-color: transparent !important; color: #B88F0B !important; } .yellow_catheader_bullet { color: #CCB21F; font-size: 13px; } .yellow_catheader_text{ color: #000000; font-size: 11px; margin-left: 3px; } .yellow_catheader_legend_bullet { margin-left: 3px; } .yellow_catheader_bullet_text { } .yellow_catheader_allday { text-align: center; background-color: #CCB21F; } .yellow_catbody { background-color: #CCB21F; border: 1px solid #B88F0B; color: #fff; } .yellow_catbody a:link { color: #fff; } /*------------ Category style package: yellow - end ------------*/ /*------------ Category style package: grey - start ------------*/ .grey_catheader, .grey_catheader_allday { background-color: #73738C; } .V9G .grey_catheader { background-color: transparent !important; color: #73738C !important; } .grey_catheader_bullet { color: #9292A1; font-size: 13px; } .grey_catheader_text { color: #000000; font-size: 11px; margin-left: 3px; } .grey_catheader_legend_bullet { margin-left: 3px; } .grey_catheader_bullet_text { } .grey_catheader_allday { text-align: center; background-color: #9292A1; } .grey_catbody { background-color: #9292A1; border: 1px solid #73738C; color: #fff; } .grey_catbody a:link { color: #fff; } /*------------ Category style package: grey - end ------------*/ .tx-cal-controller .bold { /*font-weight: bold;*/ } .refresh_calendar { margin-right: 5px; } /* Start of moving stuff from the templat into this file */ .tx-cal-controller .weekview { margin: 0 auto; } .tx-cal-controller .weekview .nextweek_arrow, .tx-cal-controller .weekview .previousweek_arrow { width: 16px; height: 20px; border: 0px; text-align: left; } .previsousweek_arrow { text-align: right; } /*------------- free & busy styles ----------*/ .fnb_header { background-color: #444444; } .fnb_body { background-color: #888888; border: 1px solid #999999; color: #fff; } /*------------- list styles ------------*/ .tx-cal-controller .even { background-color: #eeeeee; } .tx-cal-controller .treelevel0 { } .tx-cal-controller .treelevel1 { margin-left:20px; } .tx-cal-controller .treelevel2 { margin-left:30px; } .tx-cal-controller label { display:block; float:left; margin-bottom: 0px; padding-right:1em; text-align:right; width:120px; } .tx-cal-controller fieldset div { clear:left; } .tx-cal-controller .noborder { border: none; } .tx-cal-controller .search-result { list-style: none; margin-left: 0px; padding-left: 0px; } .tx-cal-controller .search-result li { padding-bottom: 1em; } .tx-cal-controller .search_result li .even { background-color: #EEEEEE; } .tx_cal_controller img .mouse_pointer { cursor:pointer; }/* #cal_general,#cal_location,#cal_organizer,#cal_freq,#cal_exception,#cal_files,#cal_notify { height:210px; overflow:auto; padding:8px; }*/ .x-form-label-top .x-form-item label { width:70px ! important; } .x-form-invalid, textarea.x-form-invalid { background: none ! important; } #cal_event_description { margin-top:10px; } .admin_link { width:100%; text-align:center; } .ics_link { width:100%; text-align:center; } .tx-cal-controller .cal_required { color: red; } .tx-cal-controller .constrain { color: red; font-weight:bold; } #editorWrap1 textarea {display: block} /*Credits: By Santosh Setty (http://webdesigninfo.wordpress.com) */ /*Posted to: Dynamic Drive CSS Library (http://www.dynamicdrive.com/style/) */ #tx_cal_controller_create_element { width:540px; } .basictab ul{ margin: 4px; padding: 3px 0; margin-left: 0; font: bold 12px Verdana; border-bottom: 1px solid gray; list-style-type: none; text-align: left; /*set to left, center, or right to align the menu as desired*/ } .basictab li{ display: inline; margin: 0; } .basictab li a{ text-decoration: none; padding: 3px 7px; margin-right: 3px; border: 1px solid gray; border-bottom: none; background-color: #6699CC; color: #FFFFFF; } .basictab li a:visited{ color: #2d2b2b; } .basictab li a:hover, .basictab li a.current{ background-color: #557CA3; color: #FFFFFF; } .basictab li a:active{ color: #000000; } .tabcontainer{ clear: left; width:95%; /*width of 2nd level sub menus*/ height:1.5em; /*height of 2nd level sub menus. Set to largest\'s sub menu\'s height to avoid jittering.*/ } .tabcontent{ display:none; } #tx_cal_controller_create_element input[type="text"]:not([size]) { width: 6em; /* Desired width of input field */ } #tx_cal_controller_create_element .treelevel0{ display:block; margin-left: 70px; } #tx_cal_controller_create_element p { margin: 7px; } #tx_cal_controller_create_element .notify, #tx_cal_controller_create_element .shared, #tx_cal_controller_create_element .exception { display:block; margin-left: 140px; } #sc1 label { width:50px; } #allday { width:10px; } #category_tree { float:right; width:200px; } #until label, #by_day label, #by_monthday label, #by_month label{ margin-left: 50px; } #by_month label, #by_monthday label{ width: 230px; } #categoryEntries { height:80px; overflow:auto; } .reminderOffset { width: 2em !important; } '), 'tt_content.list.20.cal_controller')
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 189
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news'), 'tt_content.list.20.cal_controller', 'cal_controller')
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 166
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 138, 'pid' => 10, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1603716090, 'crdate' => 1462894560, 'cruser_id' => 1, 'hidden' => 0, 'sorting' => 128, 'CType' => 'list', 'header' => 'Archiv', 'header_position' => '', 'bodytext' => '', 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => '31', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'cal_controller', 'sectionIndex' => 1, 'linkToTop' => 0, 'filelink_size' => 0, 'date' => 0, 'recursive' => 1, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="allowedViews"> <value index="vDEF">list</value> </field> <field index="calendarName"> <value index="vDEF">My Calendar</value> </field> <field index="subscription"> <value index="vDEF">0</value> </field> <field index="subscribeWithCaptcha"> <value index="vDEF">0</value> </field> <field index="weekStartDay"> <value index="vDEF"></value> </field> <field index="calendarDistance"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="s_Cat"> <language index="lDEF"> <field index="calendarMode"> <value index="vDEF">0</value> </field> <field index="calendarSelection"> <value index="vDEF">2</value> </field> <field index="categoryMode"> <value index="vDEF">0</value> </field> <field index="categorySelection"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="s_Year_View"> <language index="lDEF"> <field index="yearViewPid"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="s_Month_View"> <language index="lDEF"> <field index="monthViewPid"> <value index="vDEF"></value> </field> <field index="monthShowListView"> <value index="vDEF">0</value> </field> <field index="monthMakeMiniCal"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="s_Week_View"> <language index="lDEF"> <field index="weekViewPid"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="s_Day_View"> <language index="lDEF"> <field index="dayViewPid"> <value index="vDEF"></value> </field> <field index="dayStart"> <value index="vDEF">0700</value> </field> <field index="dayEnd"> <value index="vDEF">2300</value> </field> <field index="gridLength"> <value index="vDEF">15</value> </field> </language> </sheet> <sheet index="s_List_View"> <language index="lDEF"> <field index="listViewPid"> <value index="vDEF"></value> </field> <field index="starttime"> <value index="vDEF"></value> </field> <field index="endtime"> <value index="vDEF"></value> </field> <field index="maxEvents"> <value index="vDEF"></value> </field> <field index="maxRecurringEvents"> <value index="vDEF"></value> </field> <field index="usePageBrowser"> <value index="vDEF"></value> </field> <field index="recordsPerPage"> <value index="vDEF"></value> </field> <field index="pagesCount"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="s_Event_View"> <language index="lDEF"> <field index="eventViewPid"> <value index="vDEF">22</value> </field> <field index="isPreview"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="s_Ics_View"> <language index="lDEF"> <field index="showIcsLinks"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="s_Other_View"> <language index="lDEF"> <field index="showLogin"> <value index="vDEF">0</value> </field> <field index="showSearch"> <value index="vDEF">0</value> </field> <field index="showJumps"> <value index="vDEF">0</value> </field> <field index="showCalendarSelection"> <value index="vDEF">0</value> </field> <field index="showCategorySelection"> <value index="vDEF">0</value> </field> <field index="showTomorrowEvents"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="s_TS_View"> <language index="lDEF"> <field index="myTS"> <value index="vDEF"></value> </field> </language> </sheet> </data></T3FlexForms>', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:25:{s:5:"CType";N;s:6:"colPos";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"subheader";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:5:"pages";N;s:9:"recursive";N;s:11:"frame_class";N;s:18:"space_before_class";N;s:17:"space_after_class";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:16:"sys_language_uid";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 'file_collections' => null, 'filelink_sorting' => '', 'target' => '', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'tx_srlanguagemenu_type' => 0, 'tx_srlanguagemenu_languages' => '', 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_impexp_origuid' => 0), 'typoscriptObjectPath' => 'tt_content.list.20.cal_controller', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/maedchen/public_html/get-together.ch/typo3temp/var/cache/code/fluid_template/Standard_action_List_59129104efedbb5e4add03a78c1f82807b820956.php line 62
$array11 = array (
);$arguments7['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array11);
$arguments7['table'] = 'tt_content';
$renderChildrenClosure8 = ($arguments7['data'] !== null) ? function() use ($arguments7) { return $arguments7['data']; } : $renderChildrenClosure8;
$output6 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

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

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

$output0 .= '

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

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

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

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

$output3 .= '
';
return $output3;
at layout_Default_html_f6c4c24e9cfa69e38ca4e6769e193dea03323a63->{closure}()
in /home/maedchen/typo3/typo3_src-9.5.30/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 55
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', $childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /home/maedchen/public_html/get-together.ch/typo3temp/var/cache/code/fluid_template/layout_Default_html_f6c4c24e9cfa69e38ca4e6769e193dea03323a63.php line 1675
return $output3;
};
$arguments1 = array();

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

$output0 .= '

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

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

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 107

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="fancybox-{field:uid}" data-caption="{file:current:title}" title="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1'))), '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('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="fancybox-{field:uid}" data-caption="{file:current:title}" title="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1'))), '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('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="fancybox-{field:uid}" data-caption="{file:current:title}" title="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1'))), '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('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), 'lib.contentElement')
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 719
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="fancybox-{field:uid}" data-caption="{file:current:title}" title="{file:current:title}"'))), 'additionalConfig.' => array('no-cookie' => '1'))), '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('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), 'list')
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 46
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap' => '<div class="bodytext">|</div>'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR')), 'menu.' => array('20.' => array('0.' => array('1.' => array('target' => '_self')), '1.' => array('1.' => array('target' => '_self')), '2.' => array('1.' => array('target' => '_self')), '3.' => array('1.' => array('target' => '_self')), '4.' => array('1.' => array('target' => '_self')), '5.' => array('1.' => array('target' => '_self')), '6.' => array('1.' => array('target' => '_self')), '7.' => array('1.' => array('target' => '_self'))))))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap' => '<div class="bodytext">|</div>'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR')), 'menu.' => array('20.' => array('0.' => array('1.' => array('target' => '_self')), '1.' => array('1.' => array('target' => '_self')), '2.' => array('1.' => array('target' => '_self')), '3.' => array('1.' => array('target' => '_self')), '4.' => array('1.' => array('target' => '_self')), '5.' => array('1.' => array('target' => '_self')), '6.' => array('1.' => array('target' => '_self')), '7.' => array('1.' => array('target' => '_self'))))))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap' => '<div class="bodytext">|</div>'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR')), 'menu.' => array('20.' => array('0.' => array('1.' => array('target' => '_self')), '1.' => array('1.' => array('target' => '_self')), '2.' => array('1.' => array('target' => '_self')), '3.' => array('1.' => array('target' => '_self')), '4.' => array('1.' => array('target' => '_self')), '5.' => array('1.' => array('target' => '_self')), '6.' => array('1.' => array('target' => '_self')), '7.' => array('1.' => array('target' => '_self'))))), 'tt_content')
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 719
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap' => '<div class="bodytext">|</div>'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR')), 'menu.' => array('20.' => array('0.' => array('1.' => array('target' => '_self')), '1.' => array('1.' => array('target' => '_self')), '2.' => array('1.' => array('target' => '_self')), '3.' => array('1.' => array('target' => '_self')), '4.' => array('1.' => array('target' => '_self')), '5.' => array('1.' => array('target' => '_self')), '6.' => array('1.' => array('target' => '_self')), '7.' => array('1.' => array('target' => '_self'))))), '')
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 94
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0', 'languageField' => 'sys_language_uid'), 'renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bodytext">|</div>'))))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // 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', 'languageField' => 'sys_language_uid'), 'renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bodytext">|</div>'))))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0', 'languageField' => 'sys_language_uid'), 'renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bodytext">|</div>'))), 'marks.CONTENT')
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/TemplateContentObject.php line 154
                $this->cObj->data[$this->cObj->currentValKey] = '';
                // Getting marks
                $markerArray = [];
                foreach ($marks as $theKey => $theValue) {
                    $markerArray[$PRE . $theKey . $POST] = $this->cObj->cObjGetSingle($theValue['name'], $theValue['conf'], 'marks.' . $theKey);
                }
                // Getting wraps
                $subpartWraps = [];
                foreach ($wraps as $theKey => $theValue) {
at TYPO3\CMS\Frontend\ContentObject\TemplateContentObject->render(array('template' => 'FILE', 'template.' => array('file' => 'fileadmin/templates/template.html'), 'marks.' => array('LOGO' => 'IMAGE', 'LOGO.' => array('file' => 'fileadmin/images/logo_de.png', 'wrap' => '<a href="index.php?id=2&L=0">|</a>'), 'BANNER' => 'IMAGE', 'BANNER.' => array('file.' => array('import' => 'uploads/media/', 'import.' => array('data' => 'levelmedia: -1, slide', 'listNum' => '0'), 'treatIdAsReference' => '1', 'required' => '1'), 'altText.' => array('data' => 'page : title')), 'SPRACHE' => 'USER', 'SPRACHE.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'SJBR', 'pluginName' => 'LanguageMenu', 'extensionName' => 'SrLanguageMenu', 'controller' => 'Menu', 'action' => 'index', 'settings' => '< plugin.tx_srlanguagemenu.settings', 'view' => '< plugin.tx_srlanguagemenu.view'), 'slide' => '-1', 'slide.' => array('collect' => '-1', 'collectReverse' => '1'), 'MENUTOP' => 'HMENU', 'MENUTOP.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'TMENU', '1.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<div><ul class="sf-menu"> | </ul></div>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => '')), 'TMENU', '2.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<ul> | </ul>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => '')), 'TMENU', '3.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<ul> | </ul>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''))), 'MENUUNTEN' => 'HMENU', 'MENUUNTEN.' => array('special' => 'list', 'special.' => array('value' => '5,11,13'), 'TMENU', '1.' => array('noBlur' => '1', 'expALL' => '1', 'NO.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1"> | </li>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1_active"> | </li>'), 'CUR.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1_active"> | </li>'))), 'CONTENT' => 'CONTENT', 'CONTENT.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0', 'languageField' => 'sys_language_uid'), 'renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bodytext">|</div>'))), 'RECHTS' => 'CONTENT', 'RIGHT_CONTENT.' => array('renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bordered">|</div>'))), 'RECHTS.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2', 'languageField' => 'sys_language_uid')), 'CONTENT-RAND' => 'CONTENT', 'CONTENT-RAND.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2', 'pidInList' => '2', 'languageField' => 'sys_language_uid'), 'renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array(), 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))))), '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(*DEEP NESTED ARRAY*))))))), '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(*DEEP NESTED ARRAY*))))))), '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')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR')))), 'FOOTER' => 'CONTENT', 'FOOTER.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '15')), 'select.' => array('where' => 'colPos = 1', 'orderBy' => 'sorting', 'languageField' => 'sys_language_uid'), 'renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array(), 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR'))))))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // 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\TemplateContentObject), array('template' => 'FILE', 'template.' => array('file' => 'fileadmin/templates/template.html'), 'marks.' => array('LOGO' => 'IMAGE', 'LOGO.' => array('file' => 'fileadmin/images/logo_de.png', 'wrap' => '<a href="index.php?id=2&L=0">|</a>'), 'BANNER' => 'IMAGE', 'BANNER.' => array('file.' => array('import' => 'uploads/media/', 'import.' => array('data' => 'levelmedia: -1, slide', 'listNum' => '0'), 'treatIdAsReference' => '1', 'required' => '1'), 'altText.' => array('data' => 'page : title')), 'SPRACHE' => 'USER', 'SPRACHE.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'SJBR', 'pluginName' => 'LanguageMenu', 'extensionName' => 'SrLanguageMenu', 'controller' => 'Menu', 'action' => 'index', 'settings' => '< plugin.tx_srlanguagemenu.settings', 'view' => '< plugin.tx_srlanguagemenu.view'), 'slide' => '-1', 'slide.' => array('collect' => '-1', 'collectReverse' => '1'), 'MENUTOP' => 'HMENU', 'MENUTOP.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'TMENU', '1.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<div><ul class="sf-menu"> | </ul></div>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => '')), 'TMENU', '2.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<ul> | </ul>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => '')), 'TMENU', '3.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<ul> | </ul>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''))), 'MENUUNTEN' => 'HMENU', 'MENUUNTEN.' => array('special' => 'list', 'special.' => array('value' => '5,11,13'), 'TMENU', '1.' => array('noBlur' => '1', 'expALL' => '1', 'NO.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1"> | </li>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1_active"> | </li>'), 'CUR.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1_active"> | </li>'))), 'CONTENT' => 'CONTENT', 'CONTENT.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0', 'languageField' => 'sys_language_uid'), 'renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bodytext">|</div>'))), 'RECHTS' => 'CONTENT', 'RIGHT_CONTENT.' => array('renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bordered">|</div>'))), 'RECHTS.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2', 'languageField' => 'sys_language_uid')), 'CONTENT-RAND' => 'CONTENT', 'CONTENT-RAND.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2', 'pidInList' => '2', 'languageField' => 'sys_language_uid'), 'renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array(), 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))))), '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(*DEEP NESTED ARRAY*))))))), '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(*DEEP NESTED ARRAY*))))))), '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')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR')))), 'FOOTER' => 'CONTENT', 'FOOTER.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '15')), 'select.' => array('where' => 'colPos = 1', 'orderBy' => 'sorting', 'languageField' => 'sys_language_uid'), 'renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array(), 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR'))))))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('TEMPLATE', array('template' => 'FILE', 'template.' => array('file' => 'fileadmin/templates/template.html'), 'marks.' => array('LOGO' => 'IMAGE', 'LOGO.' => array('file' => 'fileadmin/images/logo_de.png', 'wrap' => '<a href="index.php?id=2&L=0">|</a>'), 'BANNER' => 'IMAGE', 'BANNER.' => array('file.' => array('import' => 'uploads/media/', 'import.' => array('data' => 'levelmedia: -1, slide', 'listNum' => '0'), 'treatIdAsReference' => '1', 'required' => '1'), 'altText.' => array('data' => 'page : title')), 'SPRACHE' => 'USER', 'SPRACHE.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'SJBR', 'pluginName' => 'LanguageMenu', 'extensionName' => 'SrLanguageMenu', 'controller' => 'Menu', 'action' => 'index', 'settings' => '< plugin.tx_srlanguagemenu.settings', 'view' => '< plugin.tx_srlanguagemenu.view'), 'slide' => '-1', 'slide.' => array('collect' => '-1', 'collectReverse' => '1'), 'MENUTOP' => 'HMENU', 'MENUTOP.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'TMENU', '1.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<div><ul class="sf-menu"> | </ul></div>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => '')), 'TMENU', '2.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<ul> | </ul>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => '')), 'TMENU', '3.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<ul> | </ul>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''))), 'MENUUNTEN' => 'HMENU', 'MENUUNTEN.' => array('special' => 'list', 'special.' => array('value' => '5,11,13'), 'TMENU', '1.' => array('noBlur' => '1', 'expALL' => '1', 'NO.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1"> | </li>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1_active"> | </li>'), 'CUR.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1_active"> | </li>'))), 'CONTENT' => 'CONTENT', 'CONTENT.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0', 'languageField' => 'sys_language_uid'), 'renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bodytext">|</div>'))), 'RECHTS' => 'CONTENT', 'RIGHT_CONTENT.' => array('renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bordered">|</div>'))), 'RECHTS.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2', 'languageField' => 'sys_language_uid')), 'CONTENT-RAND' => 'CONTENT', 'CONTENT-RAND.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2', 'pidInList' => '2', 'languageField' => 'sys_language_uid'), 'renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array(), 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))))), '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(*DEEP NESTED ARRAY*))))))), '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(*DEEP NESTED ARRAY*))))))), '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')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR')))), 'FOOTER' => 'CONTENT', 'FOOTER.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '15')), 'select.' => array('where' => 'colPos = 1', 'orderBy' => 'sorting', 'languageField' => 'sys_language_uid'), 'renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array(), 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR'))))), '10')
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 683
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('includeCSS.' => array('tx_fancybox' => 'EXT:fancybox/Resources/Public/Libraries/fancybox/jquery.fancybox.min.css', 'file1' => 'fileadmin/css/de.css', 'file2' => 'fileadmin/fonts/font.css', 'file3' => 'fileadmin/css/framework.css', 'file4' => 'fileadmin/css/style.css', 'file5' => 'fileadmin/superfish/superfish.css'), 'includeJSFooter.' => array('tx_fancybox_jquery' => 'EXT:fancybox/Resources/Public/Libraries/jquery-3.4.1/jquery-3.4.1.min.js', 'tx_fancybox_jquery.' => array('if.' => array('isTrue' => '1')), 'tx_fancybox' => 'EXT:fancybox/Resources/Public/Libraries/fancybox/jquery.fancybox.min.js', 'tx_fancybox.' => array('async' => '1')), '< plugin.tx_rlmplanguagedetection_pi1', 'TEMPLATE', '10.' => array('template' => 'FILE', 'template.' => array('file' => 'fileadmin/templates/template.html'), 'marks.' => array('LOGO' => 'IMAGE', 'LOGO.' => array('file' => 'fileadmin/images/logo_de.png', 'wrap' => '<a href="index.php?id=2&L=0">|</a>'), 'BANNER' => 'IMAGE', 'BANNER.' => array('file.' => array('import' => 'uploads/media/', 'import.' => array('data' => 'levelmedia: -1, slide', 'listNum' => '0'), 'treatIdAsReference' => '1', 'required' => '1'), 'altText.' => array('data' => 'page : title')), 'SPRACHE' => 'USER', 'SPRACHE.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'SJBR', 'pluginName' => 'LanguageMenu', 'extensionName' => 'SrLanguageMenu', 'controller' => 'Menu', 'action' => 'index', 'settings' => '< plugin.tx_srlanguagemenu.settings', 'view' => '< plugin.tx_srlanguagemenu.view'), 'slide' => '-1', 'slide.' => array('collect' => '-1', 'collectReverse' => '1'), 'MENUTOP' => 'HMENU', 'MENUTOP.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'TMENU', '1.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<div><ul class="sf-menu"> | </ul></div>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => '')), 'TMENU', '2.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<ul> | </ul>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => '')), 'TMENU', '3.' => array('noBlur' => '1', 'expAll' => '1', 'collapse' => '0', 'wrap' => '<ul> | </ul>', 'NO' => '1', 'NO.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACT' => '1', 'ACT.' => array('allStdWrap.' => array('dataWrap' => '<li>|</li>'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'IFSUB' => '1', 'IFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li>|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('allStdWrap.' => array('dataWrap' => '<li class="active">|'), 'ATagTitle.' => array('field' => 'title // subtitle'), 'ATagParams' => ''))), 'MENUUNTEN' => 'HMENU', 'MENUUNTEN.' => array('special' => 'list', 'special.' => array('value' => '5,11,13'), 'TMENU', '1.' => array('noBlur' => '1', 'expALL' => '1', 'NO.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1"> | </li>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1_active"> | </li>'), 'CUR.' => array('wrapItemAndSub' => '<ul>| </ul>', 'allWrap' => '<li class="level1_active"> | </li>'))), 'CONTENT' => 'CONTENT', 'CONTENT.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0', 'languageField' => 'sys_language_uid'), 'renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bodytext">|</div>'))), 'RECHTS' => 'CONTENT', 'RIGHT_CONTENT.' => array('renderObj.' => array('stdWrap.' => array('wrap' => '<div class="bordered">|</div>'))), 'RECHTS.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2', 'languageField' => 'sys_language_uid')), 'CONTENT-RAND' => 'CONTENT', 'CONTENT-RAND.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2', 'pidInList' => '2', 'languageField' => 'sys_language_uid'), 'renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array(), 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*)))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array(*DEEP NESTED ARRAY*)))), '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(*DEEP NESTED ARRAY*)))))), '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(*DEEP NESTED ARRAY*)))))), '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')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR')))), 'FOOTER' => 'CONTENT', 'FOOTER.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0', 'pidInList' => '15')), 'select.' => array('where' => 'colPos = 1', 'orderBy' => 'sorting', 'languageField' => 'sys_language_uid'), 'renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array(), 'required' => '1'), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('cal_controller' => '< plugin.tx_cal_controller', '< plugin.tt_news')), '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'))), '20.' => array('conf.' => array('tx_cal_event' => '< plugin.tx_cal_controller', 'tx_cal_event.' => array('displayCurrentRecord' => '1', 'clearPiVars' => 'uid,getdate,type,view')))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))))), '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(*DEEP NESTED ARRAY*))))))), '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(*DEEP NESTED ARRAY*))))))), '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')))), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu', 'vendorName' => 'SJBR'))))), 'headerData.' => array('TEXT', '1.' => array('value' => ' <meta property="og:description" content=""> <meta property="og:image" content=""> <meta property="og:url" content=""> <meta property="og:title" content="Get Together"> <script> $(document).ready(function(){ $("ul.sf-menu").superfish(); }); </script> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-3788790-5"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(\'js\', new Date()); gtag(\'config\', \'UA-3788790-5\', { \'anonymize_ip\': true }); </script> <!-- Matomo --> <script type="text/javascript"> var _paq = _paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push([\'trackPageView\']); _paq.push([\'enableLinkTracking\']); (function() { var u="//piwik.infoklick.ch/"; _paq.push([\'setTrackerUrl\', u+\'piwik.php\']); _paq.push([\'setSiteId\', \'27\']); var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0]; g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'piwik.js\'; s.parentNode.insertBefore(g,s); })(); </script> <!-- End Matomo Code --> ')), 'config.' => array('no_cache' => '0', 'index_enable' => '1', 'index_externals' => '1', 'notification_email_urlmode' => 'all'), 'typeNum' => '0', 'meta.' => array('AUTHOR' => 'INFOKLICK.CH', 'DESCRIPTION' => '')))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 246
     * @return string
     */
    protected function generatePageContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 268
     */
    protected function generatePageContentWithHeader(TypoScriptFrontendController $controller, ?SiteLanguage $siteLanguage): string
    {
        // Generate the page content, this has to be first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageContent($controller);
        $pageRenderer = $this->getPageRenderer();
        if ($controller->config['config']['moveJsFromHeaderToFooter'] ?? false) {
            $pageRenderer->enableMoveJsFromHeaderToFooter();
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContentWithHeader(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), null)
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 168
            // If 'disableAllHeaderCode' is set, all the header-code is discarded
            if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
                $controller->content = $this->generatePageContent($controller);
            } else {
                $controller->content = $this->generatePageContentWithHeader($controller, $request->getAttribute('language', null));
            }

            $this->timeTracker->pull($this->timeTracker->LR ? $controller->content : '');
            $this->timeTracker->decStackPointer();
at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 46
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

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

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

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

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

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 118
                GeneralUtility::makeInstance($className)->checkDataSubmission($this->controller);
            }
        }

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

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 99
                    ['code' => PageAccessFailureReasons::CACHEHASH_COMPARISON_FAILED]
                );
            }
        }
        return $handler->handle($request);
    }

    /**
     * Calculates a hash string based on additional parameters in the url.
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 171
            }
            $this->controller->determineId();
        }

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

    /**
     * Provides ways to bypass the '?id=[xxx]&type=[xx]' format, using either PATH_INFO or Server Rewrites
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 86
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }
    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
     *
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 62
            $showHiddenRecords = ($this->context->hasAspect('visibility') ? $this->context->getAspect('visibility')->includeHidden() : false);
            $GLOBALS['TSFE']->fePreview = ($simulatingDate || $simulatingGroup || $showHiddenRecords);
        }

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 68
        // At this point, we later get further route modifiers
        // for bw-compat we update $GLOBALS[TYPO3_REQUEST] to be used later in TSFE.
        $GLOBALS['TYPO3_REQUEST'] = $request;

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

    /**
     * Creates the backend user object and returns it.
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

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

    /**
     * It's possible to transfer a frontend user session via a GET/POST parameter 'FE_SESSION_KEY'.
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 90
                GeneralUtility::callUserFunction($_funcRef, $_params, $GLOBALS['TSFE']);
            }
        }

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Middleware/PreprocessRequestHook.php line 57
                $hookParameters = [];
                GeneralUtility::callUserFunction($hookFunction, $hookParameters, $hookParameters);
            }
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PreprocessRequestHook->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 58
        // refactored to have ServerRequest object available where it is needed. This global will be
        // deprecated then and removed.
        $GLOBALS['TYPO3_REQUEST'] = $request;

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$102))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/core/Classes/Http/AbstractApplication.php line 108
    {
        $requestHandler = GeneralUtility::makeInstance($this->requestHandler);
        $dispatcher = $this->createMiddlewareDispatcher($requestHandler);

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

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /home/maedchen/typo3/typo3_src-9.5.30/typo3/sysext/frontend/Classes/Http/Application.php line 69
        if (!$this->checkIfEssentialConfigurationExists()) {
            return $this->installToolRedirect();
        }
        $this->initializeContext();
        return parent::handle($request);
    }

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