-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathqueue.php
More file actions
39 lines (32 loc) · 1.1 KB
/
queue.php
File metadata and controls
39 lines (32 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
<?php
require_once('_init.php');
$options = array();
$pageUri = "{$_SERVER['PHP_SELF']}?";
if (isset($_REQUEST['filterServers']) && is_array($_REQUEST['filterServers']))
{
$options['filterServers'] = $_REQUEST['filterServers'];
foreach ($options['filterServers'] as $filterServer)
{
$pageUri .= 'filterServers[]=' . intval($filterServer) . '&';
}
}
if (isset($_REQUEST['filterName']) && strlen(trim($_REQUEST['filterName'])) > 0)
{
$options['filterName'] = $_REQUEST['filterName'];
$pageUri .= "filterName=" . urlencode($_REQUEST['filterName']) . '&';
}
if (isset($_REQUEST['sort']) && strlen(trim($_REQUEST['sort'])) > 0)
{
$options['sort'] = $_REQUEST['sort'];
}
if (isset($_REQUEST['groupby']) && strlen(trim($_REQUEST['groupby'])) > 0)
{
$options['groupby'] = $_REQUEST['groupby'];
}
$serverList = new GA_ServerList($options);
$serverList->addServers($cfgServers);
$view->versionData = $serverList->getVersionData();
$view->functionData = $serverList->getFunctionData();
$view->errors = $serverList->getErrors();
$view->pageUri = $pageUri;
$view->display('queue.tpl.php');