<?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');
/**
* Load countries language file
*/
\System::loadLanguageFile('countries');
/**
* Class SgModuleLocationsList
*
* Frontend module "locations list".
*
* @package SgLocations
* @author Sg-Medien GmbH <info@sg-medien.com>
* @copyright Sg-Medien GmbH 2017
*/
class SgModuleLocationsList extends \SgModuleLocations
{
/**
* Template
* @var string
*/
protected $strTemplate = 'mod_locations_list';
/**
* Display a wildcard in the backend
* @return string
*/
public function generate()
{
if (TL_MODE == 'BE') {
$objTemplate = new \BackendTemplate('be_wildcard');
$objTemplate->wildcard = '### ' . utf8_strtoupper($GLOBALS['TL_LANG']['FMD']['locations_list'][0]) . ' ###';
$objTemplate->title = $this->headline;
$objTemplate->id = $this->id;
$objTemplate->link = $this->name;
$objTemplate->href = 'contao/main.php?do=themes&table=tl_module&act=edit&id=' . $this->id;
return $objTemplate->parse();
}
$this->location_categories = deserialize($this->location_categories);
// return if there are no location categories
if (!is_array($this->location_categories) || empty($this->location_categories)) {
return '';
}
return parent::generate();
}
/**
* Generate the module
*/
protected function compile()
{
global $objPage;
$id = '';
$strRequest = ampersand(\Environment::get('request'), true);
$arrJumpTo = array();
$arrSqlFilter = array();
$arrSqlOptions = array();
// sort
$curSort = \Input::get('sort', true);
$curDir = \Input::get('dir', true);
$arrAvailableSort = array('location');
if ($curSort AND !empty($curSort) AND in_array($curSort, $arrAvailableSort)) {
$field = $curSort;
if ($curSort == 'location') {
$field = 'company';
}
$arrSqlOptions['order'] = '%t.' . $field;
if (isset($arrSqlOptions['order']) AND !empty($arrSqlOptions['order'])) {
if ($curDir AND $curDir == 'desc') {
$arrSqlOptions['order'] .= ' DESC';
}
}
}
$offset = intval($this->skipFirst);
$limit = null;
// maximum number of items
if ($this->numberOfItems > 0) {
$limit = $this->numberOfItems;
}
// get the total number of items
$intTotal = \SgLocationsModel::countAllOrByPids($this->location_categories, $arrSqlFilter, $arrSqlOptions);
$total = $intTotal >= 1 ? $intTotal - $offset : 0;
// split the results
if ($total > 0 && $this->perPage > 0 && (!isset($limit) || $this->numberOfItems > $this->perPage)) {
// adjust the overall limit
if (isset($limit)) {
$total = min($limit, $total);
}
// get the current page
$id = 'page_l' . $this->id;
$page = \Input::get($id) ?: 1;
// do not index or cache the page if the page number is outside the range
if ($page < 1 || $page > max(ceil($total / $this->perPage), 1)) {
$objPage->noSearch = 1;
$objPage->cache = 0;
// send a 404 header
header('HTTP/1.1 404 Not Found');
return;
}
// set limit and offset
$limit = $this->perPage;
$offset += (max($page, 1) - 1) * $this->perPage;
$skip = intval($this->skipFirst);
// overall limit
if ($offset + $limit > $total + $skip) {
$limit = $total + $skip - $offset;
}
// add the pagination menu
$objPagination = new \Pagination($total, $this->perPage, \Config::get('maxPaginationLinks'), $id);
$this->Template->pagination = $objPagination->generate("\n ");
}
// get the items
if (isset($limit)) {
$objItems = \SgLocationsModel::findAllOrByPids($this->location_categories, $limit, $offset, $arrSqlFilter, $arrSqlOptions);
} else {
$objItems = \SgLocationsModel::findAllOrByPids($this->location_categories, 0, $offset, $arrSqlFilter, $arrSqlOptions);
}
// add the items
$items = array();
if ($objItems !== null) {
while ($objItems->next()) {
if (($objTarget = $objItems->getRelated('pid')) === null) {
continue;
}
// add image
$image = false;
if ($objItems->addImage AND $objItems->singleSRC != '') {
$objModel = \FilesModel::findByUuid($objItems->singleSRC);
if ($objModel !== null) {
$objFile = new \File($objModel->path, true);
if (!$objFile->isImage) {
continue;
}
$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->imgSize
), floor(\Config::get('maxImageWidth')));
$image = $objImg;
}
}
// add item
$item = $objItems->row();
$item['image'] = $image;
// add item
$items[] = $item;
}
}
$arrFilter = array();
// build filter href
$defSort = null;
$filterHref = $strRequest;
$filterHref = preg_replace('/(\&(amp;))+$/', '', preg_replace('/(\&(amp;)?|\?)(page_l[0-9]+)=(.+?)?(\&(amp;)?|$)/', '$1', $filterHref));
// build sort array
$arrSort = array();
if (is_array($arrAvailableSort) AND count($arrAvailableSort)) {
foreach ($arrAvailableSort AS $sort) {
$arrSort[$sort] = array
(
'isActive' => $curSort == $sort ? true : false,
'activeDir' => $curSort == $sort ? ($curDir == 'desc' ? 'desc' : 'asc') : false,
'hrefAsc' => \SgLocations::addToUrl(($sort != $defSort ? 'sort=' . \System::urlEncode($sort) : ''), array($id, 'sort', 'dir')),
'hrefDesc' => \SgLocations::addToUrl(($sort != $defSort ? 'sort=' . \System::urlEncode($sort) . '&' : '') . 'dir=desc', array($id, 'sort'))
);
}
}
// build action url
$action = $filterHref;
$action = preg_replace('/\?.+?$/', '', $action);
// add template vars
$this->Template->sorts = $arrSort;
$this->Template->filter = $arrFilter;
$this->Template->action = $action;
$this->Template->count = $total;
$this->Template->items = $items;
}
}