-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
42 lines (33 loc) · 1.04 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>(mt) API PHP Class Tests</title>
</head>
<body>
<h1>(mt) API PHP Class Tests</h1>
<?php
require_once('MtAPI.php');
$mt = new MtAPI('KEY', 00000);
$services = array();
//$services = $mt->get_services_ids();
//$services = $mt->get_service_details();
//$services = $mt->get_services_list();
//$services = $mt->get_os_list();
//$services = $mt->get_available_services();
//$services = $mt->reboot_service();
//$services = $mt->set_plesk_password('XXXXX');
//$services = $mt->add_temp_disk();
//$services = $mt->flush_firewall();
//$services = $mt->set_root_password('XXXXX');
//$services = $mt->get_current_stats();
//$services = $mt->get_range_stats(1298017800, 1298019800);
//$services = $mt->get_predefined_range_stats('1day');
//$services = $mt->get_warnings();
//$services = $mt->get_warnings_thresholds();
echo '<pre>';
print_r($services);
echo '</pre>';
?>
</body>
</html>