system/modules/sg-contacts/models/SgContactsModel.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   SgContacts
  8.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  9.  * @license   EULA
  10.  * @copyright Sg-Medien GmbH 2015
  11.  */
  12. /**
  13.  * Set custom namespace
  14.  */
  15. namespace SgM;
  16. /**
  17.  * Class SgContactsModel
  18.  *
  19.  * Reads and writes contacts.
  20.  *
  21.  * @package   SgContacts
  22.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  23.  * @copyright Sg-Medien GmbH 2015
  24.  */
  25. class SgContactsModel extends \Model
  26. {
  27.     /**
  28.      * Table name
  29.      * @var string
  30.      */
  31.     protected static $strTable 'tl_sg_contacts';
  32.     /**
  33.      * Find a contact 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 SgContactsModel or null if there is no contact
  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 contact 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 SgContactsModel or null if there is no contact
  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 contacts 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 contacts
  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.     
  83.     /**
  84.      * Count all contacts (optional by their parent IDs)
  85.      *
  86.      * @param array $arrPids An optional array of contact category IDs.
  87.      * @param array $arrFilters An optional filter array.
  88.      * @param array $arrOptions An optional options array.
  89.      *
  90.      * @return \Model\Collection|null A collection of models or null if there are no contact elements
  91.      */
  92.     public static function countAllOrByPids(array $arrPids = array(), array $arrFilters = array(), array $arrOptions = array())
  93.     {
  94.         $t = static::$strTable;
  95.         $arrColumns = (is_array($arrPids) AND !empty($arrPids)) ? array("$t.pid IN(" implode(','array_map('intval'$arrPids)) . ")") : array("$t.pid!=0");
  96.         $arrValues = array();
  97.         if (is_array($arrFilters) AND !empty($arrFilters)) {
  98.             foreach ($arrFilters AS $filter) {
  99.                 if (is_array($filter)) {
  100.                     if (isset($filter['sql']) AND !empty($filter['sql'])) {
  101.                         $arrColumns[] = str_replace('%t'$t$filter['sql']);
  102.                     }
  103.                     if (is_array($filter['values']) AND !empty($filter['values'])) {
  104.                         $arrValues array_merge($arrValues$filter['values']);
  105.                     }
  106.                 }
  107.             }
  108.         }
  109.         return static::countBy($arrColumns$arrValues$arrOptions);
  110.     }
  111.     /**
  112.      * Find all contacts (optional by their parent IDs)
  113.      *
  114.      * @param array $arrPids An optional array of contact category IDs
  115.      * @param array $arrOptions An optional options array
  116.      *
  117.      * @return \Model\Collection|null A collection of models or null if there are no contacts
  118.      */
  119.     public static function findAllOrByPids(array $arrPids = array(), $intLimit 0$intOffset 0, array $arrFilters = array(), array $arrOptions = array())
  120.     {
  121.         $t = static::$strTable;
  122.         $arrColumns = (is_array($arrPids) AND !empty($arrPids)) ? array("$t.pid IN(" implode(','array_map('intval'$arrPids)) . ")") : array("$t.pid!=0");
  123.         
  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.         }
  140.         
  141.         $arrOptions['limit'] = $intLimit;
  142.         $arrOptions['offset'] = $intOffset;
  143.         return static::findBy($arrColumns$arrValues$arrOptions);
  144.     }
  145. }