system/modules/sg-locations/models/SgLocationsModel.php line 52

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