enableAttachments = true; //SITE WIDE - ALLOW ATTACHMENTS TO BE ATTACHED TO CALENDAR EVENTS /* YYYY 2019 (full 4 digit year) YY 19 (last 2 digits of year) MMMM April (full text month) MMM Apr (3 character month) MM 04 (with leading 0 month) M 4 (without leading 0 month) DDDD Monday (full text day) DDD Mon (3 character day) DD 01 (with leading 0 date) D 1 (without leading 0 date) O st (date ordinal) HHHH 00-23 (24 hr format with leading 0 hours) HHH 0-23 (24 hr format without leading 0 hours) HH 01-12 (12 hr format with leading 0 hours) H 1-12 (12 hr format withouth leading 0 hours) AP am/pm (am/pm) NN 00-59 (minutes) follow code with 's' for start or 'e' for end */ dtmasks = Array(); dtmasks[0] = '[Ds][MMMs][Ds][Os] [MMMs]'; //[DATE] when on single day dtmasks[1] = '[Ds][MMMs][Ds][Os] - [De][Oe] [MMMe]'; //[DATE] when end date is past start date but same month dtmasks[2] = '[Ds][MMMs][Ds][Os] [MMMs] - [De][Oe] [MMMe]'; //[DATE] when end date is past start date and different month/year dtmasks[3] = "[Hs]:[NNs][APs]"; //[TIME] when single time dtmasks[4] = '[Hs]:[NNs][APs] - [He]:[NNe][APe]'; //[TIME] when has start time & different end time dtmasks[5] = "All Day"; //[TIME] when all day / multi day event //[EVENTS] MUST be included //NOTE this HTML will be wrapped by a div with class 'events_page' pagemask = '
[EVENTS]
'; //[SUMMARY] [COLOR] [DATE] [TIME] [LOCATION] [CATEGORY] [ICSURL] [CALURL] [LINK] (if primary link selected) [BOOKING LINK] can be included in eventmask //NOTE this HTML will be wrapped by a div with class 'events_event' in the list view //AND with class 'view_event' when event enlarged in both list & calendar views eventmask = '[SUMMARY][DATE][TIME][DATE]
[SUMMARY]
[LOCATION][TIME][LINK][BOOKINGLINK]'; //[COLOR] FOR EVENTS WITH NO CATEGORY defaultcolor = "#BBBBBB"; longdays = false; //day headers in calendar 'Monday'/'Mon' longmonth = false; //month format for calendar navigation 'December'/'Dec' longyear = false; //year format for calendar navigation '2019'/'19'