system/modules/sg-locations/elements/SgContentLocation.php line 50

Open in your IDE?
  1. <?php
  2. /**
  3.  * Contao Open Source CMS
  4.  *
  5.  * Copyright (c) 2005-2015 Leo Feyer
  6.  *
  7.  * @package   SgLocations
  8.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  9.  * @license   EULA
  10.  * @copyright Sg-Medien GmbH 2017
  11.  */
  12. /**
  13.  * Set custom namespace
  14.  */
  15. namespace SgM;
  16. /**
  17.  * Load tl_sg_locations language file
  18.  */
  19. \System::loadLanguageFile('tl_sg_locations');
  20. /**
  21.  * Class SgContentLocation
  22.  *
  23.  * Frontend content element "location".
  24.  *
  25.  * @package   SgLocations
  26.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  27.  * @copyright Sg-Medien GmbH 2017
  28.  */
  29. class SgContentLocation extends \ContentElement
  30. {
  31.     /**
  32.      * Template
  33.      * @var string
  34.      */
  35.     protected $strTemplate 'ce_location';
  36.     /**
  37.      * Return if the location does not exist
  38.      *
  39.      * @return string
  40.      */
  41.     public function generate()
  42.     {
  43.         // get page object
  44.         global $objPage;
  45.         if (empty($this->location)) {
  46.             return '';
  47.         }
  48.         // get location data
  49.         $objLocation \SgLocationsModel::findById($this->location);
  50.         if ($objLocation === null) {
  51.             return '';
  52.         }
  53.         $arrLocationRow $objLocation->row();
  54.         // update location data object
  55.         $this->location $arrLocationRow;
  56.         if (TL_MODE == 'BE') {
  57.             return '<strong>' . (!empty($this->location_headline) ? $this->location_headline '') . '</strong>' .
  58.             '<div>' .
  59.             $GLOBALS['TL_LANG']['tl_sg_locations']['location'] . ': ' $this->replaceInsertTags($this->location['company'], false) .
  60.             ($this->location['postal'] ? ', ' $this->replaceInsertTags($this->location['postal'], false) : '') .
  61.             ($this->location['city'] ? ', ' $this->replaceInsertTags($this->location['city'], false) : '') .
  62.             ($this->location['state'] ? ', ' $this->replaceInsertTags($this->location['state'], false) : '') .
  63.             ($this->location['country'] ? ', ' . (isset($GLOBALS['TL_LANG']['CNT'][$this->location['country']]) ? $GLOBALS['TL_LANG']['CNT'][$this->location['country']] : $this->location['country']) : '') .
  64.             '</div>' .
  65.             ($this->location['phone'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['phone'][0] . ': ' $this->replaceInsertTags($this->location['phone'], false) . '</div>' '') .
  66.             ($this->location['fax'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['fax'][0] . ': ' $this->replaceInsertTags($this->location['fax'], false) . '</div>' '') .
  67.             ($this->location['email'] ? '<div>' $GLOBALS['TL_LANG']['tl_sg_locations']['email'][0] . ': ' $this->replaceInsertTags($this->location['email'], false) . '</div>' '');
  68.         }
  69.         return parent::generate();
  70.     }
  71.     /**
  72.      * Generate the content element
  73.      */
  74.     protected function compile()
  75.     {
  76.         // get page object
  77.         global $objPage;
  78.         // set the size
  79.         $this->Template->size '';
  80.         if ($this->location_image_size != '') {
  81.             $size deserialize($this->location_image_size);
  82.             if (is_array($size)) {
  83.                 $this->Template->size ' width="' $size[0] . '" height="' $size[1] . '"';
  84.             }
  85.         }
  86.         // add location image
  87.         $image false;
  88.         if ($this->location['addImage'] AND $this->location['singleSRC'] != '') {
  89.             $objModel \FilesModel::findByUuid($this->location['singleSRC']);
  90.             $objFile = new \File($objModel->pathtrue);
  91.             $arrMeta $this->getMetaData($objModel->meta$objPage->language);
  92.             if (!empty($arrMeta)) {
  93.                 if ($objPage->rootFallbackLanguage !== null) {
  94.                     $arrMeta $this->getMetaData($objModel->meta$objPage->rootFallbackLanguage);
  95.                 }
  96.             }
  97.             // use the file name as title if none is given
  98.             if ($arrMeta['title'] == '') {
  99.                 $arrMeta['title'] = specialchars($objFile->basename);
  100.             }
  101.             // add the image
  102.             $objImg = new \stdClass();
  103.             $this->addImageToTemplate($objImg, array
  104.             (
  105.                 'id' => $objModel->id,
  106.                 'uuid' => $objModel->uuid,
  107.                 'name' => $objFile->basename,
  108.                 'singleSRC' => $objModel->path,
  109.                 'alt' => $arrMeta['title'],
  110.                 'imageUrl' => $arrMeta['link'],
  111.                 'caption' => $arrMeta['caption'],
  112.                 'size' => $this->location_image_size
  113.             ), floor(\Config::get('maxImageWidth')));
  114.             $image $objImg;
  115.         }
  116.         // add location data
  117.         $this->Template->location array_merge($this->location, array('image' => $image));
  118.     }
  119. }