summaryrefslogtreecommitdiffstats
path: root/frontends/php/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/config.php')
-rw-r--r--frontends/php/config.php31
1 files changed, 18 insertions, 13 deletions
diff --git a/frontends/php/config.php b/frontends/php/config.php
index 4fb41c14..d5c00d86 100644
--- a/frontends/php/config.php
+++ b/frontends/php/config.php
@@ -436,27 +436,32 @@
show_table_header(S_ESCALATION_DETAILS_BIG);
table_begin();
- table_header(array(S_STEP,S_DESCRIPTION_SMALL,S_ACTIONS));
+ table_header(array(S_LEVEL,S_DELAY_BEFORE_ACTION,S_TIME,S_ACTIONS));
table_row(array(
1,
- "30 seconds on this level",
- "Increase escalation level"),$col++);
+ "30",
+ "1-5,09:00-18:00",
+ "Execute action"),$col++);
table_row(array(
2,
- "60 seconds on this level",
- "Increase escalation level"),$col++);
+ "30",
+ "2-7,00:00-23:59",
+ "Execute action"),$col++);
table_row(array(
- 1,
- "",
- "Increase severity"),$col++);
+ 3,
+ "30",
+ "09:00-18:00",
+ "Execute action"),$col++);
table_row(array(
- 1,
- "",
- "Set escalation level to 5"),$col++);
+ 4,
+ "0",
+ "09:00-18:00",
+ "Increase severity"),$col++);
table_row(array(
- 1,
- "",
+ 5,
+ "300",
+ "09:00-18:00",
"Increase administrative hierarcy"),$col++);
$result=DBselect("select escalationid, name from escalations order by name");