diff options
author | Renato Botelho <garga@FreeBSD.org> | 2013-07-23 22:17:15 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2013-07-23 22:17:15 -0300 |
commit | c3bf54d6587ce03f15931aa0a1c8b32f0a9dc27b (patch) | |
tree | 4c1285834942feb99adb19b78d1b50b24bbfdb42 /config/openbgpd | |
parent | 46df12808f26c02394714baa487977e2064f5433 (diff) | |
download | pfsense-packages-c3bf54d6587ce03f15931aa0a1c8b32f0a9dc27b.tar.gz pfsense-packages-c3bf54d6587ce03f15931aa0a1c8b32f0a9dc27b.tar.bz2 pfsense-packages-c3bf54d6587ce03f15931aa0a1c8b32f0a9dc27b.zip |
Add an id for each commands, define them earlier and initialize commands
Diffstat (limited to 'config/openbgpd')
-rw-r--r-- | config/openbgpd/openbgpd_status.php | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/config/openbgpd/openbgpd_status.php b/config/openbgpd/openbgpd_status.php index d337858e..f5930db0 100644 --- a/config/openbgpd/openbgpd_status.php +++ b/config/openbgpd/openbgpd_status.php @@ -30,6 +30,17 @@ require("guiconfig.inc"); +$commands = array(); + +defCmdT("summary", "OpenBGPD Summary", "bgpctl show summary"); +defCmdT("interfaces", "OpenBGPD Interfaces", "bgpctl show interfaces"); +defCmdT("routing", "OpenBGPD Routing", "bgpctl show rib"); +defCmdT("forwarding", "OpenBGPD Forwarding", "bgpctl show fib"); +defCmdT("network", "OpenBGPD Network", "bgpctl show network"); +defCmdT("nexthops", "OpenBGPD Nexthops", "bgpctl show nexthop"); +defCmdT("ip", "OpenBGPD IP", "bgpctl show ip bgp"); +defCmdT("neighbors", "OpenBGPD Neighbors", "bgpctl show neighbor"); + if ($config['version'] >= 6) $pgtitle = array("OpenBGPD", "Status"); else @@ -61,9 +72,9 @@ function doCmdT($command, $limit = 0, $filter = "") { return $result; } -function showCmdT($title, $command) { +function showCmdT($idx, $title, $command) { echo "<p>\n"; - echo "<a name=\"" . $title . "\"> </a>\n"; + echo "<a name=\"" . $idx . "\"> </a>\n"; echo "<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n"; echo "<tr><td class=\"listtopic\">" . $title . "</td></tr>\n"; echo "<tr><td class=\"listlr\"><pre>"; /* no newline after pre */ @@ -73,10 +84,10 @@ function showCmdT($title, $command) { } /* Define a command, with a title, to be executed later. */ -function defCmdT($title, $command) { +function defCmdT($idx, $title, $command) { global $commands; $title = htmlspecialchars($title,ENT_NOQUOTES); - $commands[] = array($title, $command); + $commands[$idx] = array($title, $command); } /* List all of the commands as an index. */ @@ -84,16 +95,16 @@ function listCmds() { global $commands; echo "<p>This status page includes the following information:\n"; echo "<ul width=\"700\">\n"; - foreach ($commands as $command) - echo "<li><strong><a href=\"#" . $command[0] . "\">" . $command[0] . "</a></strong></li>\n"; + foreach ($commands as $idx => $command) + echo "<li><strong><a href=\"#" . $idx . "\">" . $command[0] . "</a></strong></li>\n"; echo "</ul>\n"; } /* Execute all of the commands which were defined by a call to defCmd. */ function execCmds() { global $commands; - foreach ($commands as $command) - showCmdT($command[0], $command[1]); + foreach ($commands as $idx => $command) + showCmdT($idx, $command[0], $command[1]); } ?> @@ -129,18 +140,6 @@ function execCmds() { <tr> <td class="tabcont" > -<?php - -defCmdT("OpenBGPD Summary","bgpctl show summary"); -defCmdT("OpenBGPD Interfaces","bgpctl show interfaces"); -defCmdT("OpenBGPD Routing","bgpctl show rib"); -defCmdT("OpenBGPD Forwarding","bgpctl show fib"); -defCmdT("OpenBGPD Network","bgpctl show network"); -defCmdT("OpenBGPD Nexthops","bgpctl show nexthop"); -defCmdT("OpenBGPD IP","bgpctl show ip bgp"); -defCmdT("OpenBGPD Neighbors","bgpctl show neighbor"); - -?> <div id="cmdspace" style="width:100%"> <?php listCmds(); ?> |