Marius Cramer
2015-08-06 37b29231e47a0c4458dc1c15d98588f16f07e1e2
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
51
52
53
54
<?php
require_once '../../lib/config.inc.php';
require_once '../../lib/app.inc.php';
 
//* Check permissions for module
$app->auth->check_module_permissions('mailuser');
 
$app->uses('tpl');
 
$app->tpl->newTemplate('form.tpl.htm');
$app->tpl->setInclude('content_tpl', 'templates/index.htm');
$msg = '';
$error = '';
 
//* load language file
$lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_index.lng';
include $lng_file;
$app->tpl->setVar($wb);
 
$sql = "SELECT * FROM mail_user WHERE mailuser_id = ?";
$rec = $app->db->queryOneRecord($sql, $_SESSION['s']['user']['mailuser_id']);
 
if($rec['quota'] == 0) {
    $rec['quota'] = $wb['unlimited_txt'];
} else {
    $rec['quota'] = ($rec['quota'] / 1024 / 1024).' '.$wb['mb_txt'];
}
 
if($rec['cc'] == '') $rec['cc'] = $wb['none_txt'];
 
$app->tpl->setVar($rec);
 
$sql2 = "SELECT * FROM server WHERE server_id = ?";
$rec2 = $app->db->queryOneRecord($sql2, $rec['server_id']);
 
$app->tpl->setVar($rec2);
 
$app->tpl->setVar('msg', $msg);
$app->tpl->setVar('error', $error);
 
if(isset($_SESSION['show_info_msg'])) {
    $app->tpl->setVar('show_info_msg', $_SESSION['show_info_msg']);
    unset($_SESSION['show_info_msg']);
}
if(isset($_SESSION['show_error_msg'])) {
    $app->tpl->setVar('show_error_msg', $_SESSION['show_error_msg']);
    unset($_SESSION['show_error_msg']);
}
 
 
 
$app->tpl_defaults();
$app->tpl->pparse();
?>