Dominik Mueller
2014-02-26 b8ab8bf079d03ae4fc332b651397f49137a04a1f
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
<?php
 
class dashlet_quota {
 
    function show() {
        global $app;
 
        //* Loading Template
        $app->uses('tpl,quota_lib');
 
        $tpl = new tpl;
        $tpl->newTemplate("dashlets/templates/quota.htm");
 
        $wb = array();
        $lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_dashlet_quota.lng';
        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);
        //print_r($sites);
 
        $has_quota = false;
        if(is_array($sites) && !empty($sites)){
            $tpl->setloop('quota', $sites);
            $has_quota = isset($sites[0]['used']);
        }
        $tpl->setVar('has_quota', $has_quota);
 
        return $tpl->grab();
 
 
    }
 
}
 
 
 
 
 
 
 
 
?>