You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							35 lines
						
					
					
						
							842 B
						
					
					
				
			
		
		
	
	
							35 lines
						
					
					
						
							842 B
						
					
					
				<?php
 | 
						|
use function Hestiacp\quoteshellarg\quoteshellarg;
 | 
						|
$TAB = "BACKUP";
 | 
						|
 | 
						|
// Main include
 | 
						|
include $_SERVER["DOCUMENT_ROOT"] . "/inc/main.php";
 | 
						|
 | 
						|
// Data & Render page
 | 
						|
if (empty($_GET["backup"])) {
 | 
						|
	exec(HESTIA_CMD . "v-list-user-backups $user json", $output, $return_var);
 | 
						|
	$data = json_decode(implode("", $output), true);
 | 
						|
	if ($_SESSION["userSortOrder"] == "name") {
 | 
						|
		ksort($data);
 | 
						|
	} else {
 | 
						|
		$data = array_reverse($data, true);
 | 
						|
	}
 | 
						|
	unset($output);
 | 
						|
 | 
						|
	render_page($user, $TAB, "list_backup");
 | 
						|
} else {
 | 
						|
	exec(
 | 
						|
		HESTIA_CMD . "v-list-user-backup $user " . quoteshellarg($_GET["backup"]) . " json",
 | 
						|
		$output,
 | 
						|
		$return_var,
 | 
						|
	);
 | 
						|
	$data = json_decode(implode("", $output), true);
 | 
						|
	$data = array_reverse($data, true);
 | 
						|
	unset($output);
 | 
						|
 | 
						|
	render_page($user, $TAB, "list_backup_detail");
 | 
						|
}
 | 
						|
 | 
						|
// Back uri
 | 
						|
$_SESSION["back"] = $_SERVER["REQUEST_URI"];
 |