mirror of
https://github.com/serghey-rodin/vesta.git
synced 2024-12-27 14:31:12 -08:00
27 lines
564 B
PHP
27 lines
564 B
PHP
<?php
|
|
// Init
|
|
error_reporting(NULL);
|
|
ob_start();
|
|
session_start();
|
|
header('Content-Type: application/json');
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
$message = '';
|
|
$error = '';
|
|
|
|
// Check token
|
|
if ((!isset($_GET['token'])) || ($_SESSION['token'] != $_GET['token'])) {
|
|
$error = 'Unathenticated';
|
|
}
|
|
|
|
exec (VESTA_CMD."v-delete-cron-reports ".$user, $output, $return_var);
|
|
$message = __('Cronjob email reporting has been successfully disabled');
|
|
unset($output);
|
|
|
|
$result = array(
|
|
'message' => $message,
|
|
'error' => $error,
|
|
);
|
|
|
|
print json_encode($result);
|