const PDF_BOTTOM_Y = 80;
const LINE_HEIGHT = 10;
const PDF_WIDTH = 570;
- const DATE_WIDTH = 290;
- const TITLE_WIDTH = 250;
+ const DATE_WIDTH = 300;
+ const TITLE_WIDTH = 230;
const PDF_FONT_SIZE = 8;
const PDF_LOGO_SCALE = 1.45;
const PDF_LOGO_X = 20;
const PDF_LOGO_Y = 760;
const PDF_LFT_COL_X = 20;
- const PDF_RGT_COL_X = 300;
+ const PDF_RGT_COL_X = 320;
private $pages = array();
/**
if ( count($rec['day_of_week']['names']) < 7 && count($rec['day_of_week']['names']) > 0 ) {
$eventDates .= " ( ";
foreach ( $rec['day_of_week']['names'] as $day ) {
- $eventDates .= substr( $day, 0, 3 ) . ' ';
+ if ( in_array( $day, array( 'Saturday', 'Tuesday', 'Thursday', 'Sunday' ) ) ) {
+ $eventDates .= substr( $day, 0, 2 ) . ' ';
+ } else {
+ $eventDates .= substr( $day, 0, 1 ) . ' ';
+ }
}
$eventDates .= ")";
}