-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabasequota.php
More file actions
50 lines (32 loc) · 1.09 KB
/
databasequota.php
File metadata and controls
50 lines (32 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
class dashlet_databasequota {
function show() {
global $app;
//* Loading Template
$app->uses('tpl,quota_lib');
if (!$app->auth->verify_module_permissions('sites')) {
return;
}
$modules = $_SESSION['s']['user']['modules'];
if (!in_array($modules, 'sites')) {
return '';
}
$tpl = new tpl;
$tpl->newTemplate("dashlets/templates/databasequota.htm");
$wb = array();
$lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_dashlet_databasequota.lng';
if(is_file($lng_file)) include $lng_file;
$tpl->setVar($wb);
$databases = $app->quota_lib->get_databasequota_data( ($_SESSION["s"]["user"]["typ"] != 'admin') ? $_SESSION['s']['user']['client_id'] : null);
//print_r($databases);
$has_databasequota = false;
if(is_array($databases) && !empty($databases)){
$databases = $app->functions->htmlentities($databases);
$tpl->setloop('databasequota', $databases);
$has_databasequota = isset($databases[0]['used']);
}
$tpl->setVar('has_databasequota', $has_databasequota);
return $tpl->grab();
}
}
?>