mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 17:21:58 +01:00
874fb36d6b
Signed-off-by: Janos SUTO <sj@acts.hu>
116 lines
4.7 KiB
Smarty
116 lines
4.7 KiB
Smarty
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print DEFAULT_LANG; ?>" lang="<?php print DEFAULT_LANG; ?>">
|
|
|
|
<head>
|
|
<title><?php print $title; ?></title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="Content-Language" content="<?php print DEFAULT_LANG; ?>" />
|
|
<?php if(SITE_KEYWORDS) { ?><meta name="keywords" content="<?php print SITE_KEYWORDS; ?>" /><?php } ?>
|
|
<?php if(SITE_DESCRIPTION) { ?><meta name="description" content="<?php print SITE_DESCRIPTION; ?>" /><?php } ?>
|
|
<?php if(PROVIDED_BY) { ?><meta name="author" content="<?php print PROVIDED_BY; ?>" /><?php } ?>
|
|
<meta name="rating" content="general" />
|
|
<meta name="robots" content="all" />
|
|
|
|
<link href="/view/theme/default/assets/css/metro-bootstrap.css" rel="stylesheet" />
|
|
|
|
<?php print JS_CODE; ?>
|
|
|
|
<!-- Fav and touch icons -->
|
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/view/theme/default/assets/ico/apple-touch-icon-144-precomposed.png">
|
|
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/view/theme/default/assets/ico/apple-touch-icon-114-precomposed.png">
|
|
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/view/theme/default/assets/ico/apple-touch-icon-72-precomposed.png">
|
|
<link rel="apple-touch-icon-precomposed" href="/view/theme/default/assets/ico/apple-touch-icon-57-precomposed.png">
|
|
<?php if(BRANDING_FAVICON) { ?><link rel="shortcut icon" href="<?php print BRANDING_FAVICON; ?>" /><?php } ?>
|
|
</head>
|
|
|
|
<body onload="Piler.add_shortcuts();">
|
|
|
|
<div id="menu">
|
|
<?php print $menu; ?>
|
|
</div>
|
|
|
|
<div id="messagebox1" class="audit audit-info"></div>
|
|
|
|
<div id="delete-approved-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="deleteApprovedLabel">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" role="dialog" aria-hidden="true"><i class="icon-remove"></i></button>
|
|
<h3><?php print $text_confirm; ?> <?php print $text_delete; ?></h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>Remove message <span id="id1"/>?</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<a href="#" class="btn" data-dismiss="modal" aria-hidden="true"><?php print $text_close; ?></a>
|
|
<a href="#" class="btn btn-primary" id="id2"><?php print $text_delete; ?></a>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="delete-rejected-modal" class="modal hide fade">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" role="dialog" aria-hidden="true"><i class="icon-remove"></i></button>
|
|
<h3><?php print $text_confirm; ?> <?php print $text_delete; ?></h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>Remove message <span id="name">ERROR</span>?</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<a href="#" class="btn" data-dismiss="modal" aria-hidden="true"><?php print $text_close; ?></a>
|
|
<a href="index.php?route=message/remove&id=Error&confirmed=0" class="btn btn-primary" id="id"><?php print $text_delete; ?></a>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="mainscreen">
|
|
|
|
<div id="mailleftcontainer">
|
|
</div>
|
|
|
|
<div id="mailrightcontainernofolder">
|
|
|
|
<div id="mailrightcontent">
|
|
|
|
<div id="mailcontframe">
|
|
<div id="sspinner" class="alert alert-info lead"><i class="icon-spinner icon-spin icon-2x pull-left"></i><?php print $text_working; ?></div>
|
|
<div id="resultscontainer" class="boxlistcontent">
|
|
<?php print $content; ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php if(Registry::get('auditor_user') == 1 || Registry::get('data_officer') == 1) { ?>
|
|
|
|
<script type="text/javascript">
|
|
var mailviewsplit = new rcube_splitter({id:'splitter2', p1: 'mailcontframe', p2: 'mailpreviewframe', orientation: 'h', relative: true, start: 341});
|
|
split.add_onload('mailviewsplit.init()');
|
|
</script>
|
|
|
|
<div id="mailpreviewframe"></div>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php if(Registry::get('auditor_user') == 1 || Registry::get('data_officer') == 1) { ?>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
split.init();
|
|
});
|
|
|
|
$('#delete-approved-modal').on('show.bs.modal', function (event) {
|
|
var button = $(event.relatedTarget)
|
|
var id = button.data('id')
|
|
$('#id1').text(id)
|
|
$('#id2').attr('href', 'index.php?route=message/remove&id=' + id + '&confirmed=1')
|
|
})
|
|
</script>
|
|
|
|
<?php } ?>
|
|
|
|
<?php if(TRACKING_CODE) { print TRACKING_CODE; } ?>
|
|
|
|
</body>
|
|
</html>
|