// This script MUST remain dynamic since the data and the generated HTML is modified with a URL parameters
request.element.isStatic = 0;
// Get the Configuration and Page Map Values
appConfig = application.ptCalendar.getAppConfig();
cfDateDisplayMask = application.ptCalendar.getDisplayCFdateMask(); // "M/D/YYYY" - DATE FORMAT FOR DISPLAY
cfDateLongDisplayMask = application.ptCalendar.getDisplayCFdateLongMask(); // "dddd mmmm d, yyyy" - DATE FORMAT FOR DISPLAY
cfTimeDisplayMask = application.ptCalendar.getDisplayCFtimeMask(); // "h:mm tt" - TIME FORMAT FOR DISPLAY
// Set the Event Cache status from the configuration element
useEventsCache = application.ptCalendar.getEventCacheStatus();
// Get the items from the Display Properties Custom Element
items = attributes.elementInfo.elementData.propertyValues;
linkedCalendarPage = "";
linkedCalendarSubsite = "";
if ( ArrayLen(items) AND StructKeyExists(items[1],"values") ) {
if ( StructKeyExists(items[1].values,"linkedCalendarPage") )
linkedCalendarPage = items[1].values.linkedCalendarPage;
if ( StructKeyExists(items[1].values,"linkedCalendarSubsite") )
linkedCalendarSubsite = items[1].values.linkedCalendarSubsite;
}
// - ptCalendar EventsCache designation (generally this will be true. May need to set to false for debugging)
// useEventsCache = false; // (true/false) - Use this as an override for the Global setting that is managed via the Configuration element
/* ** getRenderUpcomingEventsData *** */
// ptCalendar date and data processing returned as CF query object
// -- THIS MUST BE INCLUDED AT THE TOP OF THE ptCalendar Upcoming Events RenderHandler (after the getRenderEventData Settings)
eventData = application.ptCalendar.calRenderController.getRenderUpcomingEventsData(
displayPropsArray=items
,useEventsCache=useEventsCache
);
//application.ptCalendar.utils.doDump(items,"items",0);
//application.ptCalendar.utils.doDump(eventData,"eventData",1);
// Get the view link data structure
if ( application.ptCalendar.viewPageMode EQ "Single" ) {
if ( LEN(TRIM(linkedCalendarPage)) )
viewLinkData = application.ptCalendar.calRenderViewService.getCalViewPageStruct(pageURL=linkedCalendarPage);
else
viewLinkData = application.ptCalendar.calRenderViewService.getCalViewPageStruct();
qParamDelimiter = "&";
}
else {
if ( LEN(TRIM(linkedCalendarSubsite)) )
viewLinkData = application.ptCalendar.calPageMapDAO.getCalPageMapStruct(subsiteID=linkedCalendarSubsite);
else
viewLinkData = application.ptCalendar.calPageMapDAO.getCalPageMapStruct();
qParamDelimiter = "?";
}
detailLink = "";
dailyLink = "";
weeklyListLink = "";
weeklyGridLink = "";
monthlyListLink = "";
monthlyGridLink = "";
if( structKeyExists(viewLinkData, "detailPage") and len(trim(viewLinkData.detailPage)) )
detailLink = viewLinkData.detailPage;
if( structKeyExists(viewLinkData, "dailyPage") and len(trim(viewLinkData.dailyPage)) )
dailyLink = viewLinkData.dailyPage;
if( structKeyExists(viewLinkData, "weeklyListPage") and len(viewLinkData.weeklyListPage) )
weeklyListLink = viewLinkData.weeklyListPage;
if( structKeyExists(viewLinkData, "weeklyGridPage") and len(viewLinkData.weeklyGridPage) )
weeklyGridLink = viewLinkData.weeklyGridPage;
if( structKeyExists(viewLinkData, "monthlyListPage") and len(viewLinkData.monthlyListPage) )
monthlyListLink = viewLinkData.monthlyListPage;
if( structKeyExists(viewLinkData, "monthlyGridPage") and len(viewLinkData.monthlyGridPage) )
monthlyGridLink = viewLinkData.monthlyGridPage;
// Get the Default Calendar View Link
defaultCalendarViewLink = monthlyGridLink;
defaultViewPageVar = application.ptcalendar.calRenderViewDAO.getCalendarDefaultViewPageVar();
if( structKeyExists(viewLinkData,defaultViewPageVar) and LEN(TRIM(viewLinkData[defaultViewPageVar])) )
defaultCalendarViewLink = viewLinkData[defaultViewPageVar];
No upcoming events
[ALL DAY]
#timeFormat(eventData[itm].startTime, cfTimeDisplayMask)# - #timeFormat(eventData[itm].endTime, cfTimeDisplayMask)#
--->