system/modules/sg-references/models/SgReferencesModel.php line 114

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. /**
  17.  * Class SgReferencesModel
  18.  *
  19.  * Reads and writes references.
  20.  *
  21.  * @package   SgReferences
  22.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  23.  * @copyright Sg-Medien GmbH 2017
  24.  */
  25. class SgReferencesModel extends \Model
  26. {
  27.     /**
  28.      * Table name
  29.      * @var string
  30.      */
  31.     protected static $strTable 'tl_sg_references';
  32.     /**
  33.      * Find references by their parent IDs and their ID or alias
  34.      *
  35.      * @param integer $varId The numeric ID or alias name.
  36.      * @param array   $arrPids An array of reference category IDs.
  37.      * @param array   $arrOptions An optional options array.
  38.      *
  39.      * @return \Model\Collection|null A collection of models or null if there are no references
  40.      */
  41.     public static function findByParentAndIdOrAlias($varId$arrPids, array $arrOptions = array())
  42.     {
  43.         if (!is_array($arrPids) || empty($arrPids)) {
  44.             return null;
  45.         }
  46.         $t = static::$strTable;
  47.         $arrColumns = array("($t.id=? OR $t.alias=?) AND $t.pid IN(" implode(','array_map('intval'$arrPids)) . ")");
  48.         if (!BE_USER_LOGGED_IN) {
  49.             $time time();
  50.             $arrColumns[] = "($t.start='' OR $t.start<$time) AND ($t.stop='' OR $t.stop>$time) AND $t.invisible=''";
  51.         }
  52.         return static::findBy($arrColumns, array((is_numeric($varId) ? $varId 0), $varId), $arrOptions);
  53.     }
  54.     /**
  55.      * Count all references (optional by their parent IDs)
  56.      *
  57.      * @param array $arrPids An optional array of reference category IDs.
  58.      * @param array $arrFilters An optional filter array.
  59.      * @param array $arrOptions An optional options array.
  60.      *
  61.      * @return \Model\Collection|null A collection of models or null if there are no reference elements
  62.      */
  63.     public static function countAllOrByPids(array $arrPids = array(), array $arrFilters = array(), array $arrOptions = array())
  64.     {
  65.         $t = static::$strTable;
  66.         $arrColumns = (is_array($arrPids) AND !empty($arrPids)) ? array("$t.pid IN(" implode(','array_map('intval'$arrPids)) . ")") : array("$t.pid!=0");
  67.         if (!BE_USER_LOGGED_IN) {
  68.             $time time();
  69.             $arrColumns[] = "($t.start='' OR $t.start<$time) AND ($t.stop='' OR $t.stop>$time) AND $t.invisible=''";
  70.         }
  71.         $arrValues = array();
  72.         if (is_array($arrFilters) AND !empty($arrFilters)) {
  73.             foreach ($arrFilters AS $filter) {
  74.                 if (is_array($filter)) {
  75.                     if (isset($filter['sql']) AND !empty($filter['sql'])) {
  76.                         $arrColumns[] = str_replace('%t'$t$filter['sql']);
  77.                     }
  78.                     if (is_array($filter['values']) AND !empty($filter['values'])) {
  79.                         $arrValues array_merge($arrValues$filter['values']);
  80.                     }
  81.                 }
  82.             }
  83.         }
  84.         return static::countBy($arrColumns$arrValues$arrOptions);
  85.     }
  86.     /**
  87.      * Find all references (optional by their parent IDs)
  88.      *
  89.      * @param array   $arrPids An optional array of reference category IDs.
  90.      * @param integer $intLimit An optional limit.
  91.      * @param integer $intOffset An optional offset.
  92.      * @param array   $arrFilters An optional filter array.
  93.      * @param array   $arrOptions An optional options array.
  94.      *
  95.      * @return \Model\Collection|null A collection of models or null if there are no reference elements
  96.      */
  97.     public static function findAllOrByPids(array $arrPids = array(), $intLimit 0$intOffset 0, array $arrFilters = array(), array $arrOptions = array())
  98.     {
  99.         $t = static::$strTable;
  100.         $arrColumns = (is_array($arrPids) AND !empty($arrPids)) ? array("$t.pid IN(" implode(','array_map('intval'$arrPids)) . ")") : array("$t.pid!=0");
  101.         if (!BE_USER_LOGGED_IN) {
  102.             $time time();
  103.             $arrColumns[] = "($t.start='' OR $t.start<$time) AND ($t.stop='' OR $t.stop>$time) AND $t.invisible=''";
  104.         }
  105.         $arrValues = array();
  106.         if (is_array($arrFilters) AND !empty($arrFilters)) {
  107.             foreach ($arrFilters AS $filter) {
  108.                 if (is_array($filter)) {
  109.                     if (isset($filter['sql']) AND !empty($filter['sql'])) {
  110.                         $arrColumns[] = str_replace('%t'$t$filter['sql']);
  111.                     }
  112.                     if (is_array($filter['values']) AND !empty($filter['values'])) {
  113.                         $arrValues array_merge($arrValues$filter['values']);
  114.                     }
  115.                 }
  116.             }
  117.         }
  118.         if (!isset($arrOptions['order'])) {
  119.             $arrOptions['order'] = "$t.pid";
  120.         } else {
  121.             $arrOptions['order'] = str_replace('%t'$t$arrOptions['order']);
  122.         }
  123.         $arrOptions['limit'] = $intLimit;
  124.         $arrOptions['offset'] = $intOffset;
  125.         return static::findBy($arrColumns$arrValues$arrOptions);
  126.     }
  127. }