Skip to content
index.php 1.35 KiB
Newer Older
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
Till Brehm's avatar
Till Brehm committed
$lng_file = 'lib/lang/'.$app->functions->check_language($_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();