$address[] = $event['locations']['zip'];
$location = new SetaPDF_Core_Text_Block( $font, self::PDF_FONT_SIZE );
+ $location->setText(implode(', ', $address));
+ $location->draw($page->getCanvas(), self::PDF_LFT_COL_X, $pdfY);
+ $pdfY -= self::LINE_HEIGHT;
+ } else if ( isset($event['locations']) && !empty($event['locations'])) {
+ $address = array();
+ $address[] = $event['locations']['name'];
+ $location = new SetaPDF_Core_Text_Block( $font, self::PDF_FONT_SIZE );
+
$location->setText(implode(', ', $address));
$location->draw($page->getCanvas(), self::PDF_LFT_COL_X, $pdfY);
$pdfY -= self::LINE_HEIGHT;