<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2015 Leo Feyer
*
* @package SgContacts
* @author Sg-Medien GmbH <info@sg-medien.com>
* @license EULA
* @copyright Sg-Medien GmbH 2015
*/
/**
* Set custom namespace
*/
namespace SgM;
/**
* Class SgContactsModel
*
* Reads and writes contacts.
*
* @package SgContacts
* @author Sg-Medien GmbH <info@sg-medien.com>
* @copyright Sg-Medien GmbH 2015
*/
class SgContactsModel extends \Model
{
/**
* Table name
* @var string
*/
protected static $strTable = 'tl_sg_contacts';
/**
* Find a contact by its ID
*
* @param mixed $varId The numeric ID
* @param array $arrOptions An optional options array
*
* @return \Model|null The SgContactsModel or null if there is no contact
*/
public static function findById($varId, array $arrOptions = array())
{
$t = static::$strTable;
$arrColumns = array("$t.id=?");
return static::findOneBy($arrColumns, array((is_numeric($varId) ? $varId : 0)), $arrOptions);
}
/**
* Find a contact from one or more categories by its ID
*
* @param mixed $varId The numeric ID
* @param array $arrPids An array of parent IDs
* @param array $arrOptions An optional options array
*
* @return \Model|null The SgContactsModel or null if there is no contact
*/
public static function findByIdAndPids($varId, $arrPids, array $arrOptions = array())
{
if (!is_array($arrPids) OR empty($arrPids)) {
return null;
}
$t = static::$strTable;
$arrColumns = array("$t.id=? AND pid IN(" . implode(',', array_map('intval', $arrPids)) . ")");
return static::findOneBy($arrColumns, array((is_numeric($varId) ? $varId : 0)), $arrOptions);
}
/**
* Find all contacts by their parent ID
*
* @param int $intPid The parent ID
* @param array $arrOptions An optional options array
*
* @return \Model\Collection|null A collection of models or null if there are no contacts
*/
public static function findByPid($intPid, array $arrOptions = array())
{
$t = static::$strTable;
$arrColumns = array("$t.pid=?");
if (!isset($arrOptions['order'])) {
$arrOptions['order'] = "$t.sorting";
}
return static::findBy($arrColumns, $intPid, $arrOptions);
}
/**
* Count all contacts (optional by their parent IDs)
*
* @param array $arrPids An optional array of contact category IDs.
* @param array $arrFilters An optional filter array.
* @param array $arrOptions An optional options array.
*
* @return \Model\Collection|null A collection of models or null if there are no contact elements
*/
public static function countAllOrByPids(array $arrPids = array(), array $arrFilters = array(), array $arrOptions = array())
{
$t = static::$strTable;
$arrColumns = (is_array($arrPids) AND !empty($arrPids)) ? array("$t.pid IN(" . implode(',', array_map('intval', $arrPids)) . ")") : array("$t.pid!=0");
$arrValues = array();
if (is_array($arrFilters) AND !empty($arrFilters)) {
foreach ($arrFilters AS $filter) {
if (is_array($filter)) {
if (isset($filter['sql']) AND !empty($filter['sql'])) {
$arrColumns[] = str_replace('%t', $t, $filter['sql']);
}
if (is_array($filter['values']) AND !empty($filter['values'])) {
$arrValues = array_merge($arrValues, $filter['values']);
}
}
}
}
return static::countBy($arrColumns, $arrValues, $arrOptions);
}
/**
* Find all contacts (optional by their parent IDs)
*
* @param array $arrPids An optional array of contact category IDs
* @param array $arrOptions An optional options array
*
* @return \Model\Collection|null A collection of models or null if there are no contacts
*/
public static function findAllOrByPids(array $arrPids = array(), $intLimit = 0, $intOffset = 0, array $arrFilters = array(), array $arrOptions = array())
{
$t = static::$strTable;
$arrColumns = (is_array($arrPids) AND !empty($arrPids)) ? array("$t.pid IN(" . implode(',', array_map('intval', $arrPids)) . ")") : array("$t.pid!=0");
$arrValues = array();
if (is_array($arrFilters) AND !empty($arrFilters)) {
foreach ($arrFilters AS $filter) {
if (is_array($filter)) {
if (isset($filter['sql']) AND !empty($filter['sql'])) {
$arrColumns[] = str_replace('%t', $t, $filter['sql']);
}
if (is_array($filter['values']) AND !empty($filter['values'])) {
$arrValues = array_merge($arrValues, $filter['values']);
}
}
}
}
if (!isset($arrOptions['order'])) {
$arrOptions['order'] = "$t.pid, $t.sorting";
}
$arrOptions['limit'] = $intLimit;
$arrOptions['offset'] = $intOffset;
return static::findBy($arrColumns, $arrValues, $arrOptions);
}
}