| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/blog/libraries/kunena/user/ |
Upload File : |
<?php
/**
* Kunena Component
* @package Kunena.Framework
* @subpackage User
*
* @copyright (C) 2008 - 2018 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die();
/**
* Class KunenaUserFinder
*/
class KunenaUserFinder extends KunenaDatabaseObjectFinder
{
protected $table = '#__users';
protected $config;
/**
* Constructor.
*/
public function __construct()
{
parent::__construct();
$this->config = KunenaConfig::getInstance();
$this->limit = $this->config->userlist_rows;
$this->query->leftJoin('#__kunena_users AS ku ON ku.userid=a.id');
}
/**
* Filter by time, either on registration or last visit date.
*
* @param JDate $starting Starting date or null if older than ending date.
* @param JDate $ending Ending date or null if newer than starting date.
* @param bool $register True = registration date, False = last visit date.
*
* @return $this
*/
public function filterByTime(JDate $starting = null, JDate $ending = null, $register = true)
{
$name = $register ? 'registerDate' : 'lastvisitDate';
if ($starting && $ending)
{
$this->query->where("a.{$name} BETWEEN {$this->db->quote($starting->toUnix())} AND {$this->db->quote($ending->toUnix())}");
}
elseif ($starting)
{
$this->query->where("a.{$name} > {$this->db->quote($starting->toUnix())}");
}
elseif ($ending)
{
$this->query->where("a.{$name} <= {$this->db->quote($ending->toUnix())}");
}
return $this;
}
/**
* @param array $ignore
*
* @return $this
*/
public function filterByConfiguration(array $ignore = array())
{
if ($this->config->userlist_count_users == '1')
{
$this->query->where('(a.block=0 OR a.activation="")');
}
elseif ($this->config->userlist_count_users == '2')
{
$this->query->where('(a.block=0 AND a.activation="")');
}
elseif ($this->config->userlist_count_users == '3')
{
$this->query->where('a.block=0');
}
// Hide super admins from the list
if ($this->config->superadmin_userlist && $ignore)
{
$this->query->where('a.id NOT IN (' . implode(',', $ignore) . ')');
}
return $this;
}
/**
* @param $search
*
* @return $this
*/
public function filterByName($search)
{
if ($search)
{
if ($this->config->username)
{
$this->query->where("a.username LIKE '%{$this->db->escape($search)}%'");
}
else
{
$this->query->where("a.name LIKE '%{$this->db->escape($search)}%'");
}
}
return $this;
}
/**
* Get users.
*
* @return array|KunenaUser[]
*/
public function find()
{
$results = parent::find();
return KunenaUserHelper::loadUsers($results);
}
}