-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathupcloud.php
More file actions
56 lines (53 loc) · 1.1 KB
/
Copy pathupcloud.php
File metadata and controls
56 lines (53 loc) · 1.1 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
http_response_code(404);
die();
require_once 'templating.php';
$name = 'Upcloud';
$longName = $name;
ob_start();
?>
<script>
function src(region_id) {
let cache_buster = "cache_buster=" + (+Date.now());
}
let regions = [{
text1: "Germany",
text2: "Frankfurt",
code: "de-fra1",
code2: "frankfurt"
}, {
text1: "Finland",
text2: "Helsinki",
code: "fi-hel1",
code2: "helsinki"
}, {
text1: "Netherlands",
text2: "Amsterdam",
code: "nl-ams1",
code2: "amsterdam"
}, {
text1: "Singapore",
text2: "Singapore",
code: "sg-sin1",
code2: "singapore"
}, {
text1: "United Kingdom",
text2: "London",
code: "uk-lon1",
code2: "london"
}, {
text1: "United States",
text2: "Chicago",
code: "us-chi1",
code2: "chicago"
}, {
text1: "United States",
text2: "San Jose",
code: "us-sjo1",
code2: "san-jose"
}];
</script>
<?php
$body = ob_get_clean();
viewProvider();
?>