<?php
//PDF PRINT - SAMPLE CONFIGURATION FILE

//GENERAL SETTINGS (see pdf.txt for details)
$ctuID = ""; //ID of the calendar to use, e.g."mycal'. Blank (""): the current calendar 
$pageHdr = "#c - Upcoming Events"; //page header text (#c: calendar title)
$pageFtr = "#p>page #n>#u #d"; //page footer template (#p: period, #n: page number, #d: date/time printed, u: user name (if logged in), >: tab left > center > right)
$sortD = 0; //event sorting on dates; 0: ascending, 1: descending
$maxDays = 0; //max. number of days to show; 0: no maximum
$evtHead = '#c'; //event head template (#e: event title, #c: event title - category color, #u: event title - owner group color, #o: event owner)
$evtBody = '123'; //event fields to show (list of numbers: 1: venue, 2: category, 3: description, . . . for more see pdf.txt)
$hdStyle = ''; //event head style ('' (empty): normal, 'B': bold, 'I': italic, 'U': underline)

//PAGE SIZE
$pSize = "A4"; //page size can be A4 or Letter

//DATE FORMATS
$mFormat = "M y"; //month format (M: January, m: Jan, y:2020). Blank (""): No month/year line
$dFormat = "W d"; //day format (W: Monday, w: Mon, d: 21, M: January, m: Jan)

//PRINT COLORS
$cHEAD = "#F5B92A"; //header text color
$bHEAD = "#1357A7"; //header background color
$cMOYE = "#F5B92A"; //month/year text color
$bMOYE = "#1357A7"; //month/year background color
$cDATE = "#5862BA"; //day text color
$bDATE = "#E0E0E0"; //day background color
