Changed Quota-Functions from sys_group to client_id
| | |
| | | <?php |
| | | |
| | | class quota_lib { |
| | | public function get_quota_data($groupid = null, $readable = true) { |
| | | public function get_quota_data($clientid = null, $readable = true) { |
| | | global $app; |
| | | |
| | | $tmp_rec = $app->db->queryAllRecords("SELECT data from monitor_data WHERE type = 'harddisk_quota' ORDER BY created DESC"); |
| | |
| | | } |
| | | //print_r($monitor_data); |
| | | |
| | | if($groupid != null){ |
| | | $sql_where = " AND sys_groupid = ".$groupid; |
| | | if($clientid != null){ |
| | | $sql_where = " AND sys_groupid = (SELECT default_group FROM sys_user WHERE client_id=".$clientid.")"; |
| | | } |
| | | |
| | | // select websites belonging to client |
| | |
| | | return $sites; |
| | | } |
| | | |
| | | public function get_mailquota_data($groupid = null, $readable = true) { |
| | | public function get_mailquota_data($clientid = null, $readable = true) { |
| | | global $app; |
| | | |
| | | $tmp_rec = $app->db->queryAllRecords("SELECT data from monitor_data WHERE type = 'email_quota' ORDER BY created DESC"); |
| | |
| | | } |
| | | //print_r($monitor_data); |
| | | |
| | | if($groupid != null){ |
| | | $sql_where = " AND sys_groupid = ".$groupid; |
| | | if($clientid != null){ |
| | | $sql_where = " AND sys_groupid = (SELECT default_group FROM sys_user WHERE client_id=".$clientid.")"; |
| | | } |
| | | |
| | | |
| | |
| | | } |
| | | |
| | | //** quota functions ----------------------------------------------------------------------------------- |
| | | public function mailquota_get_by_user($session_id, $group_id) |
| | | public function mailquota_get_by_user($session_id, $client_id) |
| | | { |
| | | global $app; |
| | | $app->uses('quota_lib'); |
| | |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $group_id = $app->functions->intval($group_id); |
| | | $client_id = $app->functions->intval($client_id); |
| | | |
| | | return $app->quota_lib->get_mailquota_data($group_id, false); |
| | | return $app->quota_lib->get_mailquota_data($client_id, false); |
| | | } |
| | | |
| | | } |
| | |
| | | } |
| | | |
| | | //** quota functions ----------------------------------------------------------------------------------- |
| | | public function quota_get_by_user($session_id, $group_id) |
| | | public function quota_get_by_user($session_id, $client_id) |
| | | { |
| | | global $app; |
| | | $app->uses('quota_lib'); |
| | |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $group_id = $app->functions->intval($group_id); |
| | | $client_id = $app->functions->intval($client_id); |
| | | |
| | | return $app->quota_lib->get_quota_data($group_id, false); |
| | | return $app->quota_lib->get_quota_data($client_id, false); |
| | | } |
| | | |
| | | |
| | |
| | | if(is_file($lng_file)) include $lng_file; |
| | | $tpl->setVar($wb); |
| | | |
| | | $emails = $app->quota_lib->get_mailquota_data( ($_SESSION["s"]["user"]["typ"] != 'admin') ? $_SESSION['s']['user']['default_group'] : null); |
| | | $emails = $app->quota_lib->get_mailquota_data( ($_SESSION["s"]["user"]["typ"] != 'admin') ? $_SESSION['s']['user']['client_id'] : null); |
| | | //print_r($emails); |
| | | |
| | | $has_mailquota = false; |
| | |
| | | if(is_file($lng_file)) include $lng_file; |
| | | $tpl->setVar($wb); |
| | | |
| | | $sites = $app->quota_lib->get_quota_data( ($_SESSION["s"]["user"]["typ"] != 'admin') ? $_SESSION['s']['user']['default_group'] : null); |
| | | $sites = $app->quota_lib->get_quota_data( ($_SESSION["s"]["user"]["typ"] != 'admin') ? $_SESSION['s']['user']['client_id'] : null); |
| | | //print_r($sites); |
| | | |
| | | $has_quota = false; |