diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-12-27 21:06:17 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-12-27 21:06:17 +0000 |
| commit | b4208bf92c49b4ff04f76fbe9f1c507d057ba238 (patch) | |
| tree | 1030ab3d3753340c252219d410ad0778dbae0ffc /frontends/php/config.php | |
| parent | 8886d442074058db524eff4f018ab5e2c7613c46 (diff) | |
Minor changes.
git-svn-id: svn://svn.zabbix.com/trunk@1566 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/config.php')
| -rw-r--r-- | frontends/php/config.php | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/frontends/php/config.php b/frontends/php/config.php index 9c19b692..053d686a 100644 --- a/frontends/php/config.php +++ b/frontends/php/config.php @@ -301,6 +301,53 @@ echo "<TR>"; } table_end(); + + + echo "<br>"; + show_table_header(S_ESCALATION_DETAILS_BIG); + + table_begin(); + table_header(array(S_STEP,S_DESCRIPTION_SMALL,S_ACTIONS)); + + table_row(array( + 1, + "30 seconds on this level", + "Increase escalation level"),$col++); + table_row(array( + 2, + "60 seconds on this level", + "Increase escalation level"),$col++); + table_row(array( + 1, + "", + "Increase severity"),$col++); + table_row(array( + 1, + "", + "Set escalation level to 5"),$col++); + table_row(array( + 1, + "", + "Increase administrative hierarcy"),$col++); + + $result=DBselect("select escalationid, name from escalations order by name"); + $col=0; + while($row=DBfetch($result)) + { + break; + $actions="<a href=\"config.php?config=2®ister=change&escalationid=".$row["escalationid"]."\">".S_CHANGE."</a>"; + table_row(array( + $row["escalationid"], + $row["name"], + $actions),$col++); + } + if(DBnum_rows($result)==0) + { + echo "<TR BGCOLOR=#EEEEEE>"; + echo "<TD COLSPAN=3 ALIGN=CENTER>".S_NO_ESCALATION_DETAILS."</TD>"; + echo "<TR>"; + } + table_end(); } ?> |
