<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2015 Leo Feyer
*
* @package SgLocations
* @author Sg-Medien GmbH <info@sg-medien.com>
* @license EULA
* @copyright Sg-Medien GmbH 2017
*/
/**
* Set custom namespace
*/
namespace SgM;
/**
* Class SgLocationsModel
*
* Reads and writes locations.
*
* @package SgLocations
* @author Sg-Medien GmbH <info@sg-medien.com>
* @copyright Sg-Medien GmbH 2017
*/
class SgLocationsModel extends \Model
{
/**
* Table name
* @var string
*/
protected static $strTable = 'tl_sg_locations';
/**
* Find a location by its ID
*
* @param mixed $varId The numeric ID
* @param array $arrOptions An optional options array
*
* @return \Model|null The SgLocationsModel or null if there is no location
*/
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 location 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 SgLocationsModel or null if there is no location
*/
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 locations 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 locations
*/
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 locations (optional by their parent IDs)
*
* @param array $arrPids An optional array of location 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 location 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 locations (optional by their parent IDs)
*
* @param array $arrPids An optional array of location category IDs.
* @param integer $intLimit An optional limit.
* @param integer $intOffset An optional offset.
* @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 location elements
*/
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";
} else {
$arrOptions['order'] = str_replace('%t', $t, $arrOptions['order']);
}
$arrOptions['limit'] = $intLimit;
$arrOptions['offset'] = $intOffset;
return static::findBy($arrColumns, $arrValues, $arrOptions);
}
}