system/modules/sg-references/modules/SgModuleReferencesList.php line 88

Open in your IDE?
  1. <?php
  2. /**
  3.  * Contao Open Source CMS
  4.  *
  5.  * Copyright (c) 2005-2015 Leo Feyer
  6.  *
  7.  * @package   SgReferences
  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. use Contao\StringUtil;
  17. /**
  18.  * Class SgModuleReferencesList
  19.  *
  20.  * Frontend module "references list".
  21.  *
  22.  * @package   SgReferences
  23.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  24.  * @copyright Sg-Medien GmbH 2017
  25.  */
  26. class SgModuleReferencesList extends \SgModuleReferences
  27. {
  28.     /**
  29.      * Template
  30.      * @var string
  31.      */
  32.     protected $strTemplate 'mod_references_list';
  33.     /**
  34.      * Display a wildcard in the backend
  35.      * @return string
  36.      */
  37.     public function generate()
  38.     {
  39.         if (TL_MODE == 'BE') {
  40.             $objTemplate = new \BackendTemplate('be_wildcard');
  41.             $objTemplate->wildcard '### ' utf8_strtoupper($GLOBALS['TL_LANG']['FMD']['references_list'][0]) . ' ###';
  42.             $objTemplate->title $this->headline;
  43.             $objTemplate->id $this->id;
  44.             $objTemplate->link $this->name;
  45.             $objTemplate->href 'contao/main.php?do=themes&amp;table=tl_module&amp;act=edit&amp;id=' $this->id;
  46.             return $objTemplate->parse();
  47.         }
  48.         $this->reference_categories deserialize($this->reference_categories);
  49.         // return if there are no reference categories
  50.         if (!is_array($this->reference_categories) || empty($this->reference_categories)) {
  51.             return '';
  52.         }
  53.         $file \Input::get('file'true);
  54.         $fid \Input::get('fid'true);
  55.         $ffid \Input::get('ffid'true);
  56.         // send the file to the browser and do not send a 404 header
  57.         if ($file != '' AND is_numeric($fid) AND is_numeric($ffid)) {
  58.             $objItem \SgReferencesModel::findByParentAndIdOrAlias($ffid$this->reference_categories);
  59.             if ($objItem !== null) {
  60.                 if ($objItem->useDownloads AND $objItem->multiDownloadsSRC != '') {
  61.                     $objFile \FilesModel::findByPk($fid);
  62.                     if ($file == $objFile->path) {
  63.                         \Controller::sendFileToBrowser($file);
  64.                     }
  65.                 }
  66.             }
  67.         }
  68.         return parent::generate();
  69.     }
  70.     /**
  71.      * Generate the module
  72.      */
  73.     protected function compile()
  74.     {
  75.         global $objPage;
  76.         $strRequest ampersand(\Environment::get('request'), true);
  77.         $arrJumpTo = array();
  78.         $arrSqlFilter = array();
  79.         $arrSqlOptions = array();
  80.         // keyword filter
  81.         $curKeywords \Input::get('keywords'true);
  82.         if ($curKeywords AND !empty($curKeywords)) {
  83.             $arrSqlFilter['keywords'] = array
  84.             (
  85.                 'sql' => '(%t.reference_headline LIKE ? OR %t.text LIKE ?)',
  86.                 'values' => array
  87.                 (
  88.                     '%' $curKeywords '%',
  89.                     '%' $curKeywords '%'
  90.                 )
  91.             );
  92.         }
  93.         // sort
  94.         $curSort \Input::get('sort'true);
  95.         $curDir \Input::get('dir'true);
  96.         $arrAvailableSort = array('reference');
  97.         if ($curSort AND !empty($curSort) AND in_array($curSort$arrAvailableSort)) {
  98.             $field $curSort;
  99.             if ($curSort == 'reference') {
  100.                 $field 'reference_headline';
  101.             }
  102.             $arrSqlOptions['order'] = '%t.' $field;
  103.             if (isset($arrSqlOptions['order']) AND !empty($arrSqlOptions['order'])) {
  104.                 if ($curDir AND $curDir == 'desc') {
  105.                     $arrSqlOptions['order'] .= ' DESC';
  106.                 }
  107.             }
  108.         } else {
  109.             $arrSqlOptions['order'] = '%t.sorting ASC';
  110.         }
  111.         $offset intval($this->skipFirst);
  112.         $limit null;
  113.         // maximum number of items
  114.         if ($this->numberOfItems 0) {
  115.             $limit $this->numberOfItems;
  116.         }
  117.         // get the total number of items
  118.         $intTotal \SgReferencesModel::countAllOrByPids($this->reference_categories$arrSqlFilter$arrSqlOptions);
  119.         $total $intTotal >= $intTotal $offset 0;
  120.         // split the results
  121.         if ($total && $this->perPage && (!isset($limit) || $this->numberOfItems $this->perPage)) {
  122.             // adjust the overall limit
  123.             if (isset($limit)) {
  124.                 $total min($limit$total);
  125.             }
  126.             // get the current page
  127.             $id 'page_r' $this->id;
  128.             $page \Input::get($id) ?: 1;
  129.             // do not index or cache the page if the page number is outside the range
  130.             if ($page || $page max(ceil($total $this->perPage), 1)) {
  131.                 $objPage->noSearch 1;
  132.                 $objPage->cache 0;
  133.                 // send a 404 header
  134.                 header('HTTP/1.1 404 Not Found');
  135.                 return;
  136.             }
  137.             // set limit and offset
  138.             $limit $this->perPage;
  139.             $offset += (max($page1) - 1) * $this->perPage;
  140.             $skip intval($this->skipFirst);
  141.             // overall limit
  142.             if ($offset $limit $total $skip) {
  143.                 $limit $total $skip $offset;
  144.             }
  145.             // add the pagination menu
  146.             $objPagination = new \Pagination($total$this->perPage\Config::get('maxPaginationLinks'), $id);
  147.             $this->Template->pagination $objPagination->generate("\n  ");
  148.         }
  149.         // get the items
  150.         if (isset($limit)) {
  151.             $objItems \SgReferencesModel::findAllOrByPids($this->reference_categories$limit$offset$arrSqlFilter$arrSqlOptions);
  152.         } else {
  153.             $objItems \SgReferencesModel::findAllOrByPids($this->reference_categories0$offset$arrSqlFilter$arrSqlOptions);
  154.         }
  155.         // add the items
  156.         $items = array();
  157.         if ($objItems !== null) {
  158.             while ($objItems->next()) {
  159.                 if (($objTarget $objItems->getRelated('pid')) === null) {
  160.                     continue;
  161.                 }
  162.                 $jumpTo intval($objTarget->jumpTo);
  163.                 $href false;
  164.                 if ($jumpTo 0) {
  165.                     $strUrl $strRequest;
  166.                     if (!isset($arrJumpTo[$objTarget->jumpTo])) {
  167.                         $objJumpTo $objTarget->getRelated('jumpTo')->loadDetails();
  168.                         if ($objJumpTo !== null) {
  169.                             $arrJumpTo[$objTarget->jumpTo] = $this->generateFrontendUrl($objJumpTo->row(), ((\Config::get('useAutoItem') && !\Config::get('disableAlias')) ? '/%s' '/items/%s'));
  170.                         } else {
  171.                             $arrJumpTo[$objTarget->jumpTo] = $strUrl;
  172.                         }
  173.                     }
  174.                     $strUrl $arrJumpTo[$objTarget->jumpTo];
  175.                     $strAlias = ($objItems->alias != '' && !\Config::get('disableAlias')) ? $objItems->alias $objItems->id;
  176.                     $href sprintf($strUrl$strAlias);
  177.                 }
  178.                 // add customer logo
  179.                 $customerLogo false;
  180.                 if ($objItems->addCustomerLogo AND $objItems->logoSRC != '') {
  181.                     $objModel \FilesModel::findByUuid($objItems->logoSRC);
  182.                     if ($objModel !== null) {
  183.                         $objFile = new \File($objModel->pathtrue);
  184.                         if (!$objFile->isImage) {
  185.                             continue;
  186.                         }
  187.                         $arrMeta $this->getMetaData($objModel->meta$objPage->language);
  188.                         if (!empty($arrMeta)) {
  189.                             if ($objPage->rootFallbackLanguage !== null) {
  190.                                 $arrMeta $this->getMetaData($objModel->meta$objPage->rootFallbackLanguage);
  191.                             }
  192.                         }
  193.                         // use the file name as title if none is given
  194.                         if (empty($arrMeta['title'])) {
  195.                             $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  196.                         }
  197.                         // add the customer logo
  198.                         $objLogo = new \stdClass();
  199.                         $this->addImageToTemplate($objLogo, array
  200.                         (
  201.                             'id' => $objModel->id,
  202.                             'uuid' => $objModel->uuid,
  203.                             'name' => $objFile->basename,
  204.                             'singleSRC' => $objModel->path,
  205.                             'alt' => $arrMeta['title'],
  206.                             'imageUrl' => ($arrMeta['link'] ?? null),
  207.                             'caption' => ($arrMeta['caption'] ?? null),
  208.                             'size' => $this->imgSize
  209.                         ), floor(\Config::get('maxImageWidth')));
  210.                         $customerLogo $objLogo;
  211.                     }
  212.                 }
  213.                 // add image
  214.                 $image false;
  215.                 if ($objItems->addImage AND $objItems->singleSRC != '') {
  216.                     $objModel \FilesModel::findByUuid($objItems->singleSRC);
  217.                     if ($objModel !== null) {
  218.                         $objFile = new \File($objModel->pathtrue);
  219.                         if (!$objFile->isImage) {
  220.                             continue;
  221.                         }
  222.                         $arrMeta $this->getMetaData($objModel->meta$objPage->language);
  223.                         if (!empty($arrMeta)) {
  224.                             if ($objPage->rootFallbackLanguage !== null) {
  225.                                 $arrMeta $this->getMetaData($objModel->meta$objPage->rootFallbackLanguage);
  226.                             }
  227.                         }
  228.                         // use the file name as title if none is given
  229.                         if (empty($arrMeta['title'])) {
  230.                             $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  231.                         }
  232.                         // add the image
  233.                         $objImg = new \stdClass();
  234.                         $this->addImageToTemplate($objImg, array
  235.                         (
  236.                             'id' => $objModel->id,
  237.                             'uuid' => $objModel->uuid,
  238.                             'name' => $objFile->basename,
  239.                             'singleSRC' => $objModel->path,
  240.                             'alt' => $arrMeta['title'],
  241.                             'imageUrl' => ($arrMeta['link'] ?? null),
  242.                             'caption' => ($arrMeta['caption'] ?? null),
  243.                             'size' => $this->imgSize
  244.                         ), floor(\Config::get('maxImageWidth')));
  245.                         $image $objImg;
  246.                     }
  247.                 }
  248.                 // add gallery
  249.                 $gallery false;
  250.                 if ($objItems->useImages AND $objItems->multiImagesSRC != '') {
  251.                     $objItems->multiImagesSRC deserialize($objItems->multiImagesSRC);
  252.                     if (is_array($objItems->multiImagesSRC) && !empty($objItems->multiImagesSRC)) {
  253.                         $images = [];
  254.                         $objFiles \FilesModel::findMultipleByUuids($objItems->multiImagesSRC);
  255.                         if ($objFiles !== null) {
  256.                             // Get all images
  257.                             while ($objFiles->next()) {
  258.                                 // Continue if the files has been processed or does not exist
  259.                                 if (isset($images[$objFiles->path]) || !file_exists(TL_ROOT '/' $objFiles->path)) {
  260.                                     continue;
  261.                                 }
  262.                                 // Single files
  263.                                 if ($objFiles->type == 'file') {
  264.                                     $objFile = new \File($objFiles->pathtrue);
  265.                                     if (!$objFile->isImage) {
  266.                                         continue;
  267.                                     }
  268.                                     $arrMeta $this->getMetaData($objFiles->meta$objPage->language);
  269.                                     if (!empty($arrMeta)) {
  270.                                         if ($objPage->rootFallbackLanguage !== null) {
  271.                                             $arrMeta $this->getMetaData($objFiles->meta$objPage->rootFallbackLanguage);
  272.                                         }
  273.                                     }
  274.                                     // use the file name as title if none is given
  275.                                     if (empty($arrMeta['title'])) {
  276.                                         $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  277.                                     }
  278.                                     // add the image
  279.                                     $objImg = new \stdClass();
  280.                                     $objImg->uuid $objFiles->uuid;
  281.                                     $this->addImageToTemplate($objImg, array
  282.                                     (
  283.                                         'id' => $objFiles->id,
  284.                                         'uuid' => $objFiles->uuid,
  285.                                         'name' => $objFile->basename,
  286.                                         'singleSRC' => $objFiles->path,
  287.                                         'alt' => $arrMeta['title'],
  288.                                         'imageUrl' => ($arrMeta['link'] ?? null),
  289.                                         'caption' => ($arrMeta['caption'] ?? null),
  290.                                         'size' => $this->imgSize
  291.                                     ), floor(\Config::get('maxImageWidth')));
  292.                                     $images[] = $objImg;
  293.                                 } // Folders
  294.                                 else {
  295.                                     $objSubfiles \FilesModel::findByPid($objFiles->uuid);
  296.                                     if ($objSubfiles === null) {
  297.                                         continue;
  298.                                     }
  299.                                     while ($objSubfiles->next()) {
  300.                                         // Skip subfolders
  301.                                         if ($objSubfiles->type == 'folder') {
  302.                                             continue;
  303.                                         }
  304.                                         $objFile = new \File($objSubfiles->pathtrue);
  305.                                         if (!$objFile->isImage) {
  306.                                             continue;
  307.                                         }
  308.                                         $arrMeta $this->getMetaData($objSubfiles->meta$objPage->language);
  309.                                         if (!empty($arrMeta)) {
  310.                                             if ($objPage->rootFallbackLanguage !== null) {
  311.                                                 $arrMeta $this->getMetaData($objSubfiles->meta$objPage->rootFallbackLanguage);
  312.                                             }
  313.                                         }
  314.                                         // use the file name as title if none is given
  315.                                         if (empty($arrMeta['title'])) {
  316.                                             $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  317.                                         }
  318.                                         // add the image
  319.                                         $objImg = new \stdClass();
  320.                                         $objImg->uuid $objSubfiles->uuid;
  321.                                         $this->addImageToTemplate($objImg, array
  322.                                         (
  323.                                             'id' => $objSubfiles->id,
  324.                                             'uuid' => $objSubfiles->uuid,
  325.                                             'name' => $objFile->basename,
  326.                                             'singleSRC' => $objSubfiles->path,
  327.                                             'alt' => $arrMeta['title'],
  328.                                             'imageUrl' => ($arrMeta['link'] ?? null),
  329.                                             'caption' => ($arrMeta['caption'] ?? null),
  330.                                             'size' => $this->imgSize
  331.                                         ), floor(\Config::get('maxImageWidth')));
  332.                                         $images[] = $objImg;
  333.                                     }
  334.                                 }
  335.                             }
  336.                             if (!empty($images)) {
  337.                                 if ($objItems->orderImagesSRC != '') {
  338.                                     $tmp deserialize($objItems->orderImagesSRC);
  339.                                     if (!empty($tmp) && is_array($tmp)) {
  340.                                         // Remove all values
  341.                                         $arrOrder array_map(function () {
  342.                                         }, array_flip($tmp));
  343.                                         // Move the matching elements to their position in $arrOrder
  344.                                         foreach ($images as $k => $v) {
  345.                                             if (array_key_exists($v->uuid$arrOrder)) {
  346.                                                 $arrOrder[$v->uuid] = $v;
  347.                                                 unset($images[$k]);
  348.                                             }
  349.                                         }
  350.                                         // Append the left-over images at the end
  351.                                         if (!empty($images)) {
  352.                                             $arrOrder array_merge($arrOrderarray_values($images));
  353.                                         }
  354.                                         // Remove empty (unreplaced) entries
  355.                                         $images array_values(array_filter($arrOrder));
  356.                                         unset($arrOrder);
  357.                                     }
  358.                                 }
  359.                                 $gallery array_values($images);
  360.                             }
  361.                         }
  362.                     }
  363.                 }
  364.                 // add downloads
  365.                 $downloads false;
  366.                 if ($objItems->useDownloads AND $objItems->multiDownloadsSRC != '') {
  367.                     $objItems->multiDownloadsSRC deserialize($objItems->multiDownloadsSRC);
  368.                     if (is_array($objItems->multiDownloadsSRC) && !empty($objItems->multiDownloadsSRC)) {
  369.                         $dls = [];
  370.                         $objFiles \FilesModel::findMultipleByUuids($objItems->multiDownloadsSRC);
  371.                         if ($objFiles !== null) {
  372.                             // Get all downloads
  373.                             while ($objFiles->next()) {
  374.                                 // Continue if the files has been processed or does not exist
  375.                                 if (isset($dls[$objFiles->path]) || !file_exists(TL_ROOT '/' $objFiles->path)) {
  376.                                     continue;
  377.                                 }
  378.                                 // Single files
  379.                                 if ($objFiles->type == 'file') {
  380.                                     if ($objFiles === null) {
  381.                                         if (!\Validator::isUuid($objFiles->uuid)) {
  382.                                             return '<p class="error">' $GLOBALS['TL_LANG']['ERR']['version2format'] . '</p>';
  383.                                         }
  384.                                     }
  385.                                     $allowedDownload trimsplit(','strtolower(\Config::get('allowedDownload')));
  386.                                     if (in_array($objFiles->extension$allowedDownload)) {
  387.                                         $objFile = new \File($objFiles->pathtrue);
  388.                                         $strHref $strRequest;
  389.                                         $strHref preg_replace('/(\&(amp;)?|\?)(file)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  390.                                         $strHref preg_replace('/(\&(amp;)?|\?)(fid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  391.                                         $strHref preg_replace('/(\&(amp;)?|\?)(ffid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  392.                                         $strHref .= ((\Config::get('disableAlias') || strpos($strHref'?') !== false) ? '&amp;' '?') . 'file=' \System::urlEncode($objFile->value) . '&amp;fid=' \System::urlEncode($objFiles->id) . '&amp;ffid=' \System::urlEncode($objItems->id);
  393.                                         $dls[] = array
  394.                                         (
  395.                                             'link' => StringUtil::specialchars($objFile->basename),
  396.                                             'title' => StringUtil::specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
  397.                                             'href' => $strHref,
  398.                                             'filesize' => $this->getReadableSize($objFile->filesize1),
  399.                                             'icon' => TL_ASSETS_URL 'assets/contao/images/' $objFile->icon,
  400.                                             'mime' => $objFile->mime,
  401.                                             'extension' => $objFile->extension,
  402.                                             'path' => $objFile->dirname,
  403.                                             'uuid' => $objFiles->uuid,
  404.                                         );
  405.                                     }
  406.                                 } // Folders
  407.                                 else {
  408.                                     $objSubfiles \FilesModel::findByPid($objFiles->uuid);
  409.                                     if ($objSubfiles === null) {
  410.                                         continue;
  411.                                     }
  412.                                     while ($objSubfiles->next()) {
  413.                                         // Skip subfolders
  414.                                         if ($objSubfiles->type == 'folder') {
  415.                                             continue;
  416.                                         }
  417.                                         if ($objSubfiles === null) {
  418.                                             if (!\Validator::isUuid($objSubfiles->uuid)) {
  419.                                                 return '<p class="error">' $GLOBALS['TL_LANG']['ERR']['version2format'] . '</p>';
  420.                                             }
  421.                                         }
  422.                                         $allowedDownload trimsplit(','strtolower(\Config::get('allowedDownload')));
  423.                                         if (in_array($objSubfiles->extension$allowedDownload)) {
  424.                                             $objFile = new \File($objSubfiles->pathtrue);
  425.                                             $strHref $strRequest;
  426.                                             $strHref preg_replace('/(\&(amp;)?|\?)(file)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  427.                                             $strHref preg_replace('/(\&(amp;)?|\?)(fid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  428.                                             $strHref preg_replace('/(\&(amp;)?|\?)(ffid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  429.                                             $strHref .= ((\Config::get('disableAlias') || strpos($strHref'?') !== false) ? '&amp;' '?') . 'file=' \System::urlEncode($objFile->value) . '&amp;fid=' \System::urlEncode($objSubfiles->id) . '&amp;ffid=' \System::urlEncode($objItems->id);
  430.                                             $dls[] = array
  431.                                             (
  432.                                                 'link' => StringUtil::specialchars($objFile->basename),
  433.                                                 'title' => StringUtil::specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
  434.                                                 'href' => $strHref,
  435.                                                 'filesize' => $this->getReadableSize($objFile->filesize1),
  436.                                                 'icon' => TL_ASSETS_URL 'assets/contao/images/' $objFile->icon,
  437.                                                 'mime' => $objFile->mime,
  438.                                                 'extension' => $objFile->extension,
  439.                                                 'path' => $objFile->dirname,
  440.                                                 'uuid' => $objSubfiles->uuid,
  441.                                             );
  442.                                         }
  443.                                     }
  444.                                 }
  445.                             }
  446.                             if (!empty($dls)) {
  447.                                 if ($objItems->orderDownloadsSRC != '') {
  448.                                     $tmp deserialize($objItems->orderDownloadsSRC);
  449.                                     if (!empty($tmp) && is_array($tmp)) {
  450.                                         // Remove all values
  451.                                         $arrOrder array_map(function () {
  452.                                         }, array_flip($tmp));
  453.                                         // Move the matching elements to their position in $arrOrder
  454.                                         foreach ($dls as $k => $v) {
  455.                                             if (array_key_exists($v['uuid'], $arrOrder)) {
  456.                                                 $arrOrder[$v['uuid']] = $v;
  457.                                                 unset($dls[$k]);
  458.                                             }
  459.                                         }
  460.                                         // Append the left-over downloads at the end
  461.                                         if (!empty($dls)) {
  462.                                             $arrOrder array_merge($arrOrderarray_values($dls));
  463.                                         }
  464.                                         // Remove empty (unreplaced) entries
  465.                                         $dls array_values(array_filter($arrOrder));
  466.                                         unset($arrOrder);
  467.                                     }
  468.                                 }
  469.                                 $downloads array_values($dls);
  470.                             }
  471.                         }
  472.                     }
  473.                 }
  474.                 // clean service list items
  475.                 $arrListItems = array();
  476.                 $arrListItemsTemp deserialize($objItems->service_listitems);
  477.                 if (is_array($arrListItemsTemp)) {
  478.                     for ($i 0$c count($arrListItemsTemp); $i $c$i++) {
  479.                         if (trim($arrListItemsTemp[$i]) !== '') {
  480.                             $arrListItems[] = $arrListItemsTemp[$i];
  481.                         }
  482.                     }
  483.                 }
  484.                 $objItems->service_listitems $arrListItems;
  485.                 // add item
  486.                 $item $objItems->row();
  487.                 $item['customerLogo'] = $customerLogo;
  488.                 $item['service_listitems'] = $objItems->service_listitems;
  489.                 $item['href'] = $href;
  490.                 $item['image'] = $image;
  491.                 $item['gallery'] = $gallery;
  492.                 $item['downloads'] = $downloads;
  493.                 // add item
  494.                 $items[] = $item;
  495.             }
  496.         }
  497.         $arrFilter = array();
  498.         // build filter href
  499.         $filterHref $strRequest;
  500.         $filterHref preg_replace('/(\&(amp;))+$/'''preg_replace('/(\&(amp;)?|\?)(page_r[0-9]+)=(.+?)?(\&(amp;)?|$)/''$1'$filterHref));
  501.         // build sort array
  502.         $arrSort = array();
  503.         if (is_array($arrAvailableSort) AND count($arrAvailableSort)) {
  504.             foreach ($arrAvailableSort AS $sort) {
  505.                 $arrSort[$sort] = array
  506.                 (
  507.                     'isActive' => $curSort == $sort true false,
  508.                     'activeDir' => $curSort == $sort ? ($curDir == 'desc' 'desc' 'asc') : false,
  509.                     'hrefAsc' => \SgReferences::addToUrl('sort=' \System::urlEncode($sort), array($id'sort''dir')),
  510.                     'hrefDesc' => \SgReferences::addToUrl('sort=' \System::urlEncode($sort) . '&amp;' 'dir=desc', array($id'sort'))
  511.                 );
  512.             }
  513.         }
  514.         // build action url
  515.         $action $filterHref;
  516.         $action preg_replace('/\?.+?$/'''$action);
  517.         // add template vars
  518.         $this->Template->sorts $arrSort;
  519.         $this->Template->filter $arrFilter;
  520.         $this->Template->action $action;
  521.         $this->Template->keywords $curKeywords;
  522.         $this->Template->count $total;
  523.         $this->Template->items $items;
  524.     }
  525. }