minor ui/lang adjustments; add security question for backup-abort action
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -289,20 +289,27 @@ if ($page == 'overview' || $page == 'htpasswds') {
|
||||
}
|
||||
|
||||
if (Settings::Get('system.backupenabled') == 1) {
|
||||
if ($action == 'abort' && isset($_POST['send']) && $_POST['send'] == 'send') {
|
||||
if ($action == 'abort') {
|
||||
if (isset($_POST['send']) && $_POST['send'] == 'send') {
|
||||
$log->logAction(FroxlorLogger::USR_ACTION, LOG_NOTICE, "customer_extras::backup - aborted scheduled backupjob");
|
||||
try {
|
||||
CustomerBackups::getLocal($userinfo, $_POST)->delete();
|
||||
} catch (Exception $e) {
|
||||
Response::dynamicError($e->getMessage());
|
||||
}
|
||||
Response::standardSuccess('backupaborted');
|
||||
Response::redirectTo($filename, [
|
||||
'page' => $page,
|
||||
'action' => ''
|
||||
]);
|
||||
} else {
|
||||
HTML::askYesNo('extras_reallydelete_backup', $filename, [
|
||||
'backup_job_entry' => $id,
|
||||
'section' => 'extras',
|
||||
'page' => $page,
|
||||
'action' => $action
|
||||
]);
|
||||
}
|
||||
if ($action == '') {
|
||||
} elseif ($action == '') {
|
||||
$log->logAction(FroxlorLogger::USR_ACTION, LOG_NOTICE, "viewed customer_extras::backup");
|
||||
|
||||
// check whether there is a backup-job for this customer
|
||||
|
||||
@@ -106,16 +106,18 @@ if (!is_null($month) && !is_null($year)) {
|
||||
'mail_data' => $traf['mail_data'],
|
||||
]);
|
||||
} else {
|
||||
// default to the last 36 months
|
||||
$from_date = (new DateTime)->modify("last day of last months")->setTime(23, 59, 59)->sub(new \DateInterval('P3Y'))->format('U');
|
||||
$result_stmt = Database::prepare("
|
||||
SELECT `month`, `year`, SUM(`http`) AS http, SUM(`ftp_up`) AS ftp_up, SUM(`ftp_down`) AS ftp_down, SUM(`mail`) AS mail
|
||||
FROM `" . TABLE_PANEL_TRAFFIC . "`
|
||||
WHERE `customerid` = :customerid
|
||||
WHERE `customerid` = :customerid AND `stamp` = :fromdate
|
||||
GROUP BY `year`, `month`
|
||||
ORDER BY `year` DESC, `month` DESC
|
||||
LIMIT 12
|
||||
ORDER BY `year` ASC, `month` ASC
|
||||
");
|
||||
Database::pexecute($result_stmt, [
|
||||
"customerid" => $userinfo['customerid']
|
||||
"customerid" => $userinfo['customerid'],
|
||||
"fromdate" => $from_date
|
||||
]);
|
||||
$traffic_complete['http'] = 0;
|
||||
$traffic_complete['ftp'] = 0;
|
||||
|
||||
@@ -53,6 +53,9 @@ class HTML
|
||||
if ((!isset($box['show_element']) || $box['show_element'] === true) && (!isset($box['required_resources']) || $box['required_resources'] == '' || (isset($userinfo[$box['required_resources']]) && ((int)$userinfo[$box['required_resources']] > 0 || $userinfo[$box['required_resources']] == '-1')))) {
|
||||
$navigation_links = [];
|
||||
$box_active = false;
|
||||
if (isset($box['url']) && $box['url'] == basename($_SERVER["SCRIPT_FILENAME"])) {
|
||||
$box_active = true;
|
||||
}
|
||||
foreach ($box['elements'] as $element) {
|
||||
if ((!isset($element['show_element']) || $element['show_element'] === true) && (!isset($element['required_resources']) || $element['required_resources'] == '' || (isset($userinfo[$element['required_resources']]) && ((int)$userinfo[$element['required_resources']] > 0 || $userinfo[$element['required_resources']] == '-1')))) {
|
||||
$target = '';
|
||||
@@ -63,7 +66,10 @@ class HTML
|
||||
$target = ' target="_blank"';
|
||||
}
|
||||
|
||||
if (isset($_GET['page']) && substr_count($element['url'], "page=" . $_GET['page']) > 0 && substr_count($element['url'], basename($_SERVER["SCRIPT_FILENAME"])) > 0) {
|
||||
if (
|
||||
((empty($_GET['page']) && substr_count($element['url'], "page=") == 0) || (isset($_GET['page']) && substr_count($element['url'], "page=" . $_GET['page']) > 0))
|
||||
&& substr_count($element['url'], basename($_SERVER["SCRIPT_FILENAME"])) > 0
|
||||
) {
|
||||
$active = true;
|
||||
$box_active = true;
|
||||
}
|
||||
|
||||
@@ -143,6 +143,10 @@ return [
|
||||
[
|
||||
'url' => 'customer_traffic.php?page=current',
|
||||
'label' => lng('menue.traffic.current')
|
||||
],
|
||||
[
|
||||
'url' => 'customer_traffic.php',
|
||||
'label' => lng('menue.traffic.overview')
|
||||
]
|
||||
]
|
||||
]
|
||||
|
||||
@@ -111,7 +111,7 @@ return [
|
||||
'visible' => [Domain::class, 'canEditAlias']
|
||||
],
|
||||
'isassigned' => [
|
||||
'icon' => 'fa-check-to-slot',
|
||||
'icon' => 'fa fa-check-to-slot',
|
||||
'title' => lng('domains.isassigneddomain'),
|
||||
'visible' => [Domain::class, 'isAssigned']
|
||||
],
|
||||
|
||||
@@ -1035,7 +1035,7 @@ Vielen Dank, Ihr Administrator',
|
||||
],
|
||||
'domains' => [
|
||||
'domains' => 'Domains',
|
||||
'settings' => 'Einstellungen',
|
||||
'settings' => 'Übersicht Domains',
|
||||
],
|
||||
'ftp' => [
|
||||
'ftp' => 'FTP',
|
||||
@@ -1051,7 +1051,7 @@ Vielen Dank, Ihr Administrator',
|
||||
'traffic' => [
|
||||
'traffic' => 'Traffic',
|
||||
'current' => 'Aktueller Monat',
|
||||
'table' => 'Übersicht',
|
||||
'overview' => 'Übersicht',
|
||||
],
|
||||
'phpsettings' => [
|
||||
'maintitle' => 'PHP-Konfigurationen',
|
||||
@@ -1198,6 +1198,7 @@ Vielen Dank, Ihr Administrator',
|
||||
'email_reallydelete_forwarder' => 'Wollen Sie die Weiterleitung "%s" wirklich löschen?',
|
||||
'extras_reallydelete' => 'Wollen Sie den Verzeichnisschutz für "%s" wirklich löschen?',
|
||||
'extras_reallydelete_pathoptions' => 'Wollen Sie die Optionen für den Pfad "%s" wirklich löschen?',
|
||||
'extras_reallydelete_backup' => 'Wollen Sie die geplante Sicherung wirklich löschen?',
|
||||
'ftp_reallydelete' => 'Wollen Sie das FTP-Benutzerkonto "%s" wirklich löschen?',
|
||||
'mysql_reallydelete' => 'Wollen Sie die Datenbank "%s" wirklich löschen?<br />ACHTUNG! Alle Daten gehen unwiderruflich verloren!',
|
||||
'admin_configs_reallyrebuild' => 'Wollen Sie wirklich alle Konfigurationsdateien neu erstellen lassen?',
|
||||
|
||||
@@ -1332,7 +1332,7 @@ Yours sincerely, your administrator',
|
||||
],
|
||||
'domains' => [
|
||||
'domains' => 'Domains',
|
||||
'settings' => 'Settings',
|
||||
'settings' => 'Domains overview',
|
||||
],
|
||||
'ftp' => [
|
||||
'ftp' => 'FTP',
|
||||
@@ -1348,7 +1348,7 @@ Yours sincerely, your administrator',
|
||||
'traffic' => [
|
||||
'traffic' => 'Traffic',
|
||||
'current' => 'Current Month',
|
||||
'table' => 'Traffic',
|
||||
'overview' => 'Total traffic',
|
||||
],
|
||||
'phpsettings' => [
|
||||
'maintitle' => 'PHP Configurations',
|
||||
@@ -1543,6 +1543,7 @@ Yours sincerely, your administrator',
|
||||
'email_reallydelete_forwarder' => 'Do you really want to delete the forwarder %s?',
|
||||
'extras_reallydelete' => 'Do you really want to delete the directory protection for %s?',
|
||||
'extras_reallydelete_pathoptions' => 'Do you really want to delete the path options for %s?',
|
||||
'extras_reallydelete_backup' => 'Do you really want to abort the planned backup job?',
|
||||
'ftp_reallydelete' => 'Do you really want to delete the FTP-account %s?',
|
||||
'mysql_reallydelete' => 'Do you really want to delete the database %s? This cannot be undone!',
|
||||
'admin_configs_reallyrebuild' => 'Do you really want to rebuild all config files?',
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<input type="hidden" name="{{ id }}" value="{{ field }}"/>
|
||||
{% endfor %}
|
||||
<button class="btn btn-danger" type="submit" name="submitbutton">{{ lng('panel.yes') }}</button>
|
||||
{% if back_link is defined and back_link is iterable %}
|
||||
{% if back_link is defined and back_link is iterable and back_link|length > 0 %}
|
||||
<a href="{{ linker(back_link) }}" class="btn btn-secondary">{{ lng('panel.no') }}</a>
|
||||
{% else %}
|
||||
<a href="javascript:history.back(-1)" class="btn btn-secondary">{{ lng('panel.no') }}</a>
|
||||
|
||||
Reference in New Issue
Block a user