<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2015 Leo Feyer
*
* @package SgReferences
* @author Sg-Medien GmbH <info@sg-medien.com>
* @license EULA
* @copyright Sg-Medien GmbH 2017
*/
/**
* Set custom namespace
*/
namespace SgM;
/**
* Class SgReferencesModel
*
* Reads and writes references.
*
* @package SgReferences
* @author Sg-Medien GmbH <info@sg-medien.com>
* @copyright Sg-Medien GmbH 2017
*/
class SgReferencesModel extends \Model
{
/**
* Table name
* @var string
*/
protected static $strTable = 'tl_sg_references';
/**
* Find references by their parent IDs and their ID or alias
*
* @param integer $varId The numeric ID or alias name.
* @param array $arrPids An array of reference category IDs.
* @param array $arrOptions An optional options array.
*
* @return \Model\Collection|null A collection of models or null if there are no references
*/
public static function findByParentAndIdOrAlias($varId, $arrPids, array $arrOptions = array())
{
if (!is_array($arrPids) || empty($arrPids)) {
return null;
}
$t = static::$strTable;
$arrColumns = array("($t.id=? OR $t.alias=?) AND $t.pid IN(" . implode(',', array_map('intval', $arrPids)) . ")");
if (!BE_USER_LOGGED_IN) {
$time = time();
$arrColumns[] = "($t.start='' OR $t.start<$time) AND ($t.stop='' OR $t.stop>$time) AND $t.invisible=''";
}
return static::findBy($arrColumns, array((is_numeric($varId) ? $varId : 0), $varId), $arrOptions);
}
/**
* Count all references (optional by their parent IDs)
*
* @param array $arrPids An optional array of reference 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 reference 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");
if (!BE_USER_LOGGED_IN) {
$time = time();
$arrColumns[] = "($t.start='' OR $t.start<$time) AND ($t.stop='' OR $t.stop>$time) AND $t.invisible=''";
}
$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 references (optional by their parent IDs)
*
* @param array $arrPids An optional array of reference 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 reference 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");
if (!BE_USER_LOGGED_IN) {
$time = time();
$arrColumns[] = "($t.start='' OR $t.start<$time) AND ($t.stop='' OR $t.stop>$time) AND $t.invisible=''";
}
$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";
} else {
$arrOptions['order'] = str_replace('%t', $t, $arrOptions['order']);
}
$arrOptions['limit'] = $intLimit;
$arrOptions['offset'] = $intOffset;
return static::findBy($arrColumns, $arrValues, $arrOptions);
}
}