system/modules/sg-locations/modules/SgModuleLocationsList.php line 64

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.  * Load countries language file
  22.  */
  23. \System::loadLanguageFile('countries');
  24. /**
  25.  * Class SgModuleLocationsList
  26.  *
  27.  * Frontend module "locations list".
  28.  *
  29.  * @package   SgLocations
  30.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  31.  * @copyright Sg-Medien GmbH 2017
  32.  */
  33. class SgModuleLocationsList extends \SgModuleLocations
  34. {
  35.     /**
  36.      * Template
  37.      * @var string
  38.      */
  39.     protected $strTemplate 'mod_locations_list';
  40.     /**
  41.      * Display a wildcard in the backend
  42.      * @return string
  43.      */
  44.     public function generate()
  45.     {
  46.         if (TL_MODE == 'BE') {
  47.             $objTemplate = new \BackendTemplate('be_wildcard');
  48.             $objTemplate->wildcard '### ' utf8_strtoupper($GLOBALS['TL_LANG']['FMD']['locations_list'][0]) . ' ###';
  49.             $objTemplate->title $this->headline;
  50.             $objTemplate->id $this->id;
  51.             $objTemplate->link $this->name;
  52.             $objTemplate->href 'contao/main.php?do=themes&amp;table=tl_module&amp;act=edit&amp;id=' $this->id;
  53.             return $objTemplate->parse();
  54.         }
  55.         $this->location_categories deserialize($this->location_categories);
  56.         // return if there are no location categories
  57.         if (!is_array($this->location_categories) || empty($this->location_categories)) {
  58.             return '';
  59.         }
  60.         return parent::generate();
  61.     }
  62.     /**
  63.      * Generate the module
  64.      */
  65.     protected function compile()
  66.     {
  67.         global $objPage;
  68.         $id '';
  69.         $strRequest ampersand(\Environment::get('request'), true);
  70.         $arrJumpTo = array();
  71.         $arrSqlFilter = array();
  72.         $arrSqlOptions = array();
  73.         // sort
  74.         $curSort \Input::get('sort'true);
  75.         $curDir \Input::get('dir'true);
  76.         $arrAvailableSort = array('location');
  77.         if ($curSort AND !empty($curSort) AND in_array($curSort$arrAvailableSort)) {
  78.             $field $curSort;
  79.             if ($curSort == 'location') {
  80.                 $field 'company';
  81.             }
  82.             $arrSqlOptions['order'] = '%t.' $field;
  83.             if (isset($arrSqlOptions['order']) AND !empty($arrSqlOptions['order'])) {
  84.                 if ($curDir AND $curDir == 'desc') {
  85.                     $arrSqlOptions['order'] .= ' DESC';
  86.                 }
  87.             }
  88.         }
  89.         $offset intval($this->skipFirst);
  90.         $limit null;
  91.         // maximum number of items
  92.         if ($this->numberOfItems 0) {
  93.             $limit $this->numberOfItems;
  94.         }
  95.         // get the total number of items
  96.         $intTotal \SgLocationsModel::countAllOrByPids($this->location_categories$arrSqlFilter$arrSqlOptions);
  97.         $total $intTotal >= $intTotal $offset 0;
  98.         // split the results
  99.         if ($total && $this->perPage && (!isset($limit) || $this->numberOfItems $this->perPage)) {
  100.             // adjust the overall limit
  101.             if (isset($limit)) {
  102.                 $total min($limit$total);
  103.             }
  104.             // get the current page
  105.             $id 'page_l' $this->id;
  106.             $page \Input::get($id) ?: 1;
  107.             // do not index or cache the page if the page number is outside the range
  108.             if ($page || $page max(ceil($total $this->perPage), 1)) {
  109.                 $objPage->noSearch 1;
  110.                 $objPage->cache 0;
  111.                 // send a 404 header
  112.                 header('HTTP/1.1 404 Not Found');
  113.                 return;
  114.             }
  115.             // set limit and offset
  116.             $limit $this->perPage;
  117.             $offset += (max($page1) - 1) * $this->perPage;
  118.             $skip intval($this->skipFirst);
  119.             // overall limit
  120.             if ($offset $limit $total $skip) {
  121.                 $limit $total $skip $offset;
  122.             }
  123.             // add the pagination menu
  124.             $objPagination = new \Pagination($total$this->perPage\Config::get('maxPaginationLinks'), $id);
  125.             $this->Template->pagination $objPagination->generate("\n  ");
  126.         }
  127.         // get the items
  128.         if (isset($limit)) {
  129.             $objItems \SgLocationsModel::findAllOrByPids($this->location_categories$limit$offset$arrSqlFilter$arrSqlOptions);
  130.         } else {
  131.             $objItems \SgLocationsModel::findAllOrByPids($this->location_categories0$offset$arrSqlFilter$arrSqlOptions);
  132.         }
  133.         // add the items
  134.         $items = array();
  135.         if ($objItems !== null) {
  136.             while ($objItems->next()) {
  137.                 if (($objTarget $objItems->getRelated('pid')) === null) {
  138.                     continue;
  139.                 }
  140.                 // add image
  141.                 $image false;
  142.                 if ($objItems->addImage AND $objItems->singleSRC != '') {
  143.                     $objModel \FilesModel::findByUuid($objItems->singleSRC);
  144.                     if ($objModel !== null) {
  145.                         $objFile = new \File($objModel->pathtrue);
  146.                         if (!$objFile->isImage) {
  147.                             continue;
  148.                         }
  149.                         $arrMeta $this->getMetaData($objModel->meta$objPage->language);
  150.                         if (!empty($arrMeta)) {
  151.                             if ($objPage->rootFallbackLanguage !== null) {
  152.                                 $arrMeta $this->getMetaData($objModel->meta$objPage->rootFallbackLanguage);
  153.                             }
  154.                         }
  155.                         // use the file name as title if none is given
  156.                         if ($arrMeta['title'] == '') {
  157.                             $arrMeta['title'] = specialchars($objFile->basename);
  158.                         }
  159.                         // add the image
  160.                         $objImg = new \stdClass();
  161.                         $this->addImageToTemplate($objImg, array
  162.                         (
  163.                             'id' => $objModel->id,
  164.                             'uuid' => $objModel->uuid,
  165.                             'name' => $objFile->basename,
  166.                             'singleSRC' => $objModel->path,
  167.                             'alt' => $arrMeta['title'],
  168.                             'imageUrl' => $arrMeta['link'],
  169.                             'caption' => $arrMeta['caption'],
  170.                             'size' => $this->imgSize
  171.                         ), floor(\Config::get('maxImageWidth')));
  172.                         $image $objImg;
  173.                     }
  174.                 }
  175.                 // add item
  176.                 $item $objItems->row();
  177.                 $item['image'] = $image;
  178.                 // add item
  179.                 $items[] = $item;
  180.             }
  181.         }
  182.         $arrFilter = array();
  183.         // build filter href
  184.         $defSort null;
  185.         $filterHref $strRequest;
  186.         $filterHref preg_replace('/(\&(amp;))+$/'''preg_replace('/(\&(amp;)?|\?)(page_l[0-9]+)=(.+?)?(\&(amp;)?|$)/''$1'$filterHref));
  187.         // build sort array
  188.         $arrSort = array();
  189.         if (is_array($arrAvailableSort) AND count($arrAvailableSort)) {
  190.             foreach ($arrAvailableSort AS $sort) {
  191.                 $arrSort[$sort] = array
  192.                 (
  193.                     'isActive' => $curSort == $sort true false,
  194.                     'activeDir' => $curSort == $sort ? ($curDir == 'desc' 'desc' 'asc') : false,
  195.                     'hrefAsc' => \SgLocations::addToUrl(($sort != $defSort 'sort=' \System::urlEncode($sort) : ''), array($id'sort''dir')),
  196.                     'hrefDesc' => \SgLocations::addToUrl(($sort != $defSort 'sort=' \System::urlEncode($sort) . '&amp;' '') . 'dir=desc', array($id'sort'))
  197.                 );
  198.             }
  199.         }
  200.         // build action url
  201.         $action $filterHref;
  202.         $action preg_replace('/\?.+?$/'''$action);
  203.         // add template vars
  204.         $this->Template->sorts $arrSort;
  205.         $this->Template->filter $arrFilter;
  206.         $this->Template->action $action;
  207.         $this->Template->count $total;
  208.         $this->Template->items $items;
  209.     }
  210. }