diff options
author | thompsa <andy@fud.org.nz> | 2010-02-08 14:13:32 +1300 |
---|---|---|
committer | thompsa <andy@fud.org.nz> | 2010-02-08 14:13:32 +1300 |
commit | c41399737ada9c52a25161dc35df3a66e3f32eb1 (patch) | |
tree | c72f360f6bda0cecb48ba4369e01f7711e8c427c /config/haproxy-dev/haproxy_pools.php | |
parent | c24b5f93d9cc42d4529c58b59246ed71d83f1602 (diff) | |
download | pfsense-packages-c41399737ada9c52a25161dc35df3a66e3f32eb1.tar.gz pfsense-packages-c41399737ada9c52a25161dc35df3a66e3f32eb1.tar.bz2 pfsense-packages-c41399737ada9c52a25161dc35df3a66e3f32eb1.zip |
Grey out disabled items.
Diffstat (limited to 'config/haproxy-dev/haproxy_pools.php')
-rwxr-xr-x | config/haproxy-dev/haproxy_pools.php | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/config/haproxy-dev/haproxy_pools.php b/config/haproxy-dev/haproxy_pools.php index ede6aea8..61e85273 100755 --- a/config/haproxy-dev/haproxy_pools.php +++ b/config/haproxy-dev/haproxy_pools.php @@ -107,16 +107,25 @@ include("head.inc"); <td width="30%" class="listhdrr">Listener</td> <td width="10%" class="list"></td> </tr> - <?php $i = 0; foreach ($a_pools as $pool): ?> +<?php + $i = 0; + foreach ($a_pools as $pool): + $textss = $textse = ""; + if ($pool['status'] != 'active') { + $textss = "<span class=\"gray\">"; + $textse = "</span>"; + } +?> <tr> <td class="listlr" ondblclick="document.location='haproxy_pool_edit.php?id=<?=$i;?>';"> - <?=$pool['name'];?> + <?=$textss . $pool['name'] . $textse;?> </td> <td class="listlr" ondblclick="document.location='haproxy_pool_edit.php?id=<?=$i;?>';"> - <?=$pool['status'];?> + <?=$textss . $pool['status'] . $textse;?> </td> <td class="listlr" ondblclick="document.location='haproxy_pool_edit.php?id=<?=$i;?>';"> <?php + echo $textss; $sep = ""; foreach ($a_backends as $backend) { if($backend['pool'] == $pool['name']) { @@ -124,6 +133,7 @@ include("head.inc"); $sep = ", "; } } + echo $textse; ?> </td> <td class="list" nowrap> |