<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2015 Leo Feyer
*
* @package SgLocations
* @author Sg-Medien GmbH <info@sg-medien.com>
* @license EULA
* @copyright Sg-Medien GmbH 2017
*/
/**
* Set custom namespace
*/
namespace SgM;
/**
* Load tl_sg_locations language file
*/
\System::loadLanguageFile('tl_sg_locations');
/**
* Class SgContentLocation
*
* Frontend content element "location".
*
* @package SgLocations
* @author Sg-Medien GmbH <info@sg-medien.com>
* @copyright Sg-Medien GmbH 2017
*/
class SgContentLocation extends \ContentElement
{
/**
* Template
* @var string
*/
protected $strTemplate = 'ce_location';
/**
* Return if the location does not exist
*
* @return string
*/
public function generate()
{
// get page object
global $objPage;
if (empty($this->location)) {
return '';
}
// get location data
$objLocation = \SgLocationsModel::findById($this->location);
if ($objLocation === null) {
return '';
}
$arrLocationRow = $objLocation->row();
// update location data object
$this->location = $arrLocationRow;
if (TL_MODE == 'BE') {
return '<strong>' . (!empty($this->location_headline) ? $this->location_headline : '') . '</strong>' .
'<div>' .
$GLOBALS['TL_LANG']['tl_sg_locations']['location'] . ': ' . $this->replaceInsertTags($this->location['company'], false) .
($this->location['postal'] ? ', ' . $this->replaceInsertTags($this->location['postal'], false) : '') .
($this->location['city'] ? ', ' . $this->replaceInsertTags($this->location['city'], false) : '') .
($this->location['state'] ? ', ' . $this->replaceInsertTags($this->location['state'], false) : '') .
($this->location['country'] ? ', ' . (isset($GLOBALS['TL_LANG']['CNT'][$this->location['country']]) ? $GLOBALS['TL_LANG']['CNT'][$this->location['country']] : $this->location['country']) : '') .
'</div>' .
($this->location['phone'] ? '<div>' . $GLOBALS['TL_LANG']['tl_sg_locations']['phone'][0] . ': ' . $this->replaceInsertTags($this->location['phone'], false) . '</div>' : '') .
($this->location['fax'] ? '<div>' . $GLOBALS['TL_LANG']['tl_sg_locations']['fax'][0] . ': ' . $this->replaceInsertTags($this->location['fax'], false) . '</div>' : '') .
($this->location['email'] ? '<div>' . $GLOBALS['TL_LANG']['tl_sg_locations']['email'][0] . ': ' . $this->replaceInsertTags($this->location['email'], false) . '</div>' : '');
}
return parent::generate();
}
/**
* Generate the content element
*/
protected function compile()
{
// get page object
global $objPage;
// set the size
$this->Template->size = '';
if ($this->location_image_size != '') {
$size = deserialize($this->location_image_size);
if (is_array($size)) {
$this->Template->size = ' width="' . $size[0] . '" height="' . $size[1] . '"';
}
}
// add location image
$image = false;
if ($this->location['addImage'] AND $this->location['singleSRC'] != '') {
$objModel = \FilesModel::findByUuid($this->location['singleSRC']);
$objFile = new \File($objModel->path, true);
$arrMeta = $this->getMetaData($objModel->meta, $objPage->language);
if (!empty($arrMeta)) {
if ($objPage->rootFallbackLanguage !== null) {
$arrMeta = $this->getMetaData($objModel->meta, $objPage->rootFallbackLanguage);
}
}
// use the file name as title if none is given
if ($arrMeta['title'] == '') {
$arrMeta['title'] = specialchars($objFile->basename);
}
// add the image
$objImg = new \stdClass();
$this->addImageToTemplate($objImg, array
(
'id' => $objModel->id,
'uuid' => $objModel->uuid,
'name' => $objFile->basename,
'singleSRC' => $objModel->path,
'alt' => $arrMeta['title'],
'imageUrl' => $arrMeta['link'],
'caption' => $arrMeta['caption'],
'size' => $this->location_image_size
), floor(\Config::get('maxImageWidth')));
$image = $objImg;
}
// add location data
$this->Template->location = array_merge($this->location, array('image' => $image));
}
}