Revision 082df017
Added by Scott Ullrich almost 16 years ago
usr/local/www/load_balancer_monitor.php | ||
---|---|---|
37 | 37 |
##|-PRIV |
38 | 38 |
|
39 | 39 |
require("guiconfig.inc"); |
40 |
require("util.inc"); |
|
40 | 41 |
|
41 | 42 |
if (!is_array($config['load_balancer']['monitor_type'])) { |
42 | 43 |
$config['load_balancer']['monitor_type'] = array(); |
... | ... | |
81 | 82 |
$pgtitle = array("Services", "Load Balancer","Monitor"); |
82 | 83 |
include("head.inc"); |
83 | 84 |
|
85 |
// Sort items |
|
86 |
$a_monitor = msort($a_monitor, "name"); |
|
87 |
|
|
84 | 88 |
?> |
85 | 89 |
<body link="#0000CC" vlink="#0000CC" alink="#0000CC"> |
86 | 90 |
<?php include("fbegin.inc"); ?> |
usr/local/www/load_balancer_pool.php | ||
---|---|---|
89 | 89 |
$a_pool[$i]['monitor'] = "<a href=\"/load_balancer_monitor_edit.php?id={$mondex[$a_pool[$i]['monitor']]}\">{$a_pool[$i]['monitor']}</a>"; |
90 | 90 |
} |
91 | 91 |
|
92 |
// Sort items |
|
93 |
$a_pool = msort($a_pool, "name"); |
|
94 |
|
|
92 | 95 |
$pgtitle = array("Services", "Load Balancer","Pool"); |
93 | 96 |
include("head.inc"); |
94 | 97 |
|
usr/local/www/load_balancer_relay_action.php | ||
---|---|---|
98 | 98 |
$pgtitle = array("Services", "Load Balancer","Relay Action"); |
99 | 99 |
include("head.inc"); |
100 | 100 |
|
101 |
// Sort items |
|
102 |
$a_vs = msort($a_action, "name"); |
|
103 |
|
|
101 | 104 |
?> |
102 | 105 |
<body link="#0000CC" vlink="#0000CC" alink="#0000CC"> |
103 | 106 |
<?php include("fbegin.inc"); ?> |
usr/local/www/load_balancer_relay_protocol.php | ||
---|---|---|
94 | 94 |
$pgtitle = array("Services", "Load Balancer","Relay Protocol"); |
95 | 95 |
include("head.inc"); |
96 | 96 |
|
97 |
// Sort items |
|
98 |
$a_vs = msort($a_protocol, "name"); |
|
99 |
|
|
97 | 100 |
?> |
98 | 101 |
<body link="#0000CC" vlink="#0000CC" alink="#0000CC"> |
99 | 102 |
<?php include("fbegin.inc"); ?> |
usr/local/www/load_balancer_virtual_server.php | ||
---|---|---|
84 | 84 |
} |
85 | 85 |
} |
86 | 86 |
|
87 |
// Sort items |
|
88 |
$a_vs = msort($a_vs, "name"); |
|
87 | 89 |
|
88 | 90 |
$pgtitle = array("Services","Load Balancer","Virtual Servers"); |
89 | 91 |
include("head.inc"); |
Also available in: Unified diff
Sort by name