summaryrefslogtreecommitdiff
path: root/instances.php
blob: b9db7710261da9062d5c6ff59f0f434be5804b92 (plain)
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
<?php

include "lib/frontend.php";
$frontend = new frontend();

include "data/config.php";

$params = "";
$first = true;
foreach($_GET as $key => $value){
	
	if(
		!is_string($value) ||
		$key == "target"
	){
		
		continue;
	}
	
	if($first === true){
		
		$first = false;
		$params = "?";
	}else{
		
		$params .= "&";
	}
	
	$params .= urlencode($key) . "=" . urlencode($value);
}

if(
	!isset($_GET["target"]) ||
	!is_string($_GET["target"])
){
	
	$target = "";
}else{
	
	$target = "/" . urlencode($_GET["target"]);
}

$instances = "";
foreach(config::INSTANCES as $instance){
	
	$instances .= '<tr><td class="expand"><a href="' . htmlspecialchars($instance) . $target . $params . '" target="_BLANK" rel="noreferer">' . htmlspecialchars($instance) . '</a></td></tr>';
}

echo
	$frontend->load(
		"instances.html",
		[
			"instances_html" => $instances
		]
	);