50 lines
1.6 KiB
PHP
50 lines
1.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* For the full copyright and license information, please view the COPYING
|
|
* file that was distributed with this source code. You can also view the
|
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Florian Lippert <flo@syscp.org> (2003-2009)
|
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Functions
|
|
* @version $Id$
|
|
*/
|
|
|
|
function getCustomers($limit_resource = '')
|
|
{
|
|
global $db;
|
|
|
|
$additional_conditions = '';
|
|
$additional_conditions_array = array();
|
|
if(getSessionUserDetail('customers_see_all') != true)
|
|
{
|
|
$additional_conditions_array[] = '`adminid` = \'' . (int)getSessionUserDetail('adminid') . '\'';
|
|
}
|
|
if($limit_resource != '')
|
|
{
|
|
$additional_conditions_array[] = '(`' . $limit_resource . '_used` < `' . $limit_resource . '` OR `' . $limit_resource . '` = \'-1\')';
|
|
}
|
|
if(!empty($additional_conditions_array))
|
|
{
|
|
$additional_conditions = ' WHERE ' . implode(' AND ', $additional_conditions_array) . ' ';
|
|
}
|
|
|
|
$query = 'SELECT `customerid`, `loginname`, `name`, `firstname`, `company` FROM `' . TABLE_PANEL_CUSTOMERS . '` ' . $additional_conditions . ' ORDER BY `name` ASC';
|
|
$result = $db->query($query);
|
|
$customers_array = array();
|
|
|
|
while($row = $db->fetch_array($result))
|
|
{
|
|
$customers_array[$row['customerid']] = getCorrectFullUserDetails($row) . ' (' . $row['loginname'] . ')';
|
|
}
|
|
|
|
return $customers_array;
|
|
}
|