[Web] More custom_params
This commit is contained in:
@@ -25,7 +25,6 @@ if (preg_match("/^([a-f0-9]{64})$/", $_POST['quick_release']) || preg_match("/^(
|
||||
}
|
||||
elseif (in_array($_GET['action'], array('release', 'delete'))) {
|
||||
if (preg_match("/^([a-f0-9]{64})$/", $_GET['hash'])) {
|
||||
if ($_GET['action'] == "release"):
|
||||
?>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
@@ -33,7 +32,18 @@ elseif (in_array($_GET['action'], array('release', 'delete'))) {
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading"><span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> <?= $lang['header']['quarantine']; ?></div>
|
||||
<div class="panel-body">
|
||||
<legend data-hash="<?=$_GET['hash'];?>"><?=$lang['quarantine']['release'];?></legend>
|
||||
<?php
|
||||
if ($_GET['action'] == "release") {
|
||||
?>
|
||||
<legend id="qtitle" data-hash="<?=$_GET['hash'];?>"><?=$lang['quarantine']['release'];?></legend>
|
||||
<?php
|
||||
}
|
||||
elseif ($_GET['action'] == "delete") {
|
||||
?>
|
||||
<legend id="qtitle" data-hash="<?=$_GET['hash'];?>"><?=$lang['quarantine']['remove'];?></legend>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<div id="qid_error" style="display:none" class="alert alert-danger"></div>
|
||||
<div class="form-group">
|
||||
<label for="qid_detail_symbols"><h4><?=$lang['quarantine']['rspamd_result'];?>:</h4></label>
|
||||
@@ -60,62 +70,40 @@ elseif (in_array($_GET['action'], array('release', 'delete'))) {
|
||||
<label for="qid_detail_fuzzy"><h4>Fuzzy Hashes:</h4></label>
|
||||
<p id="qid_detail_fuzzy"></p>
|
||||
</div>
|
||||
<form method="post" autofill="off">
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-success" name="quick_release" value="<?=$_GET['hash'];?>"><?= $lang['tfa']['confirm']; ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
<div id="qactions">
|
||||
<form method="post" autofill="off">
|
||||
<div class="form-group">
|
||||
<?php
|
||||
elseif ($_GET['action'] == "delete"):
|
||||
if ($_GET['action'] == "release") {
|
||||
?>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-offset-2 col-md-8">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading"><span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> <?= $lang['header']['quarantine']; ?></div>
|
||||
<div class="panel-body">
|
||||
<legend data-hash="<?=$_GET['hash'];?>"><?=$lang['quarantine']['remove'];?></legend>
|
||||
<div id="qid_error" style="display:none" class="alert alert-danger"></div>
|
||||
<div class="form-group">
|
||||
<label for="qid_detail_symbols"><h4><?=$lang['quarantine']['rspamd_result'];?>:</h4></label>
|
||||
<p><?=$lang['quarantine']['spam_score'];?>: <span id="qid_detail_score"></span></p>
|
||||
<p id="qid_detail_symbols"></p>
|
||||
<button type="submit" class="btn btn-success" name="quick_release" value="<?=$_GET['hash'];?>"><?= $lang['quarantine']['confirm']; ?></button>
|
||||
<?php
|
||||
}
|
||||
elseif ($_GET['action'] == "delete") {
|
||||
?>
|
||||
<button type="submit" class="btn btn-success" name="quick_delete" value="<?=$_GET['hash'];?>"><?= $lang['quarantine']['confirm']; ?></button>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="qid_detail_subj"><h4><?=$lang['quarantine']['subj'];?>:</h4></label>
|
||||
<p id="qid_detail_subj"></p>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="qid_detail_hfrom"><h4><?=$lang['quarantine']['sender_header'];?>:</h4></label>
|
||||
<p><span class="mail-address-item" id="qid_detail_hfrom"></span></p>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="qid_detail_efrom"><h4><?=$lang['quarantine']['sender'];?>:</h4></label>
|
||||
<p><span class="mail-address-item" id="qid_detail_efrom"></span></p>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="qid_detail_recipients"><h4><?=$lang['quarantine']['recipients'];?>:</h4></label>
|
||||
<p id="qid_detail_recipients"></p>
|
||||
</div>
|
||||
<form method="post" autofill="off">
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-success" name="quick_delete" value="<?=$_GET['hash'];?>"><?= $lang['tfa']['confirm']; ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- /row -->
|
||||
</div> <!-- /container -->
|
||||
<?php
|
||||
endif;
|
||||
}
|
||||
}
|
||||
?>
|
||||
<script type='text/javascript'>
|
||||
<?php
|
||||
$lang_quarantine = json_encode($lang['quarantine']);
|
||||
echo "var lang = ". $lang_quarantine . ";\n";
|
||||
?>
|
||||
</script>
|
||||
<?php
|
||||
$js_minifier->add('/web/js/site/qhandler.js');
|
||||
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/footer.inc.php';
|
||||
?>
|
||||
|
Reference in New Issue
Block a user