mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-07-16 05:53:04 +02:00
23 lines
457 B
PHP
23 lines
457 B
PHP
<?php
|
|
// Init
|
|
error_reporting(NULL);
|
|
ob_start();
|
|
session_start();
|
|
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
$backup = $_POST['system'];
|
|
$action = $_POST['action'];
|
|
|
|
switch ($action) {
|
|
case 'delete': $cmd='v-delete-user-backup-exclusions';
|
|
break;
|
|
default: header("Location: /list/backup/exclusions"); exit;
|
|
}
|
|
|
|
foreach ($backup as $value) {
|
|
v_exec($cmd, [$user, $value], false);
|
|
}
|
|
|
|
header("Location: /list/backup/exclusions");
|