diff options
| author | sasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-05-27 09:26:12 +0000 |
|---|---|---|
| committer | sasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-05-27 09:26:12 +0000 |
| commit | 70f35ff303e4c22ff4e38d42953f2008f10824da (patch) | |
| tree | d838dc5ad1254e9847627c5491c1bd24d9e6a5ec /frontends/php/include/defines.inc.php | |
| parent | 0ee1e17fdd240f0121f7eed9bd26959910075569 (diff) | |
| download | zabbix-70f35ff303e4c22ff4e38d42953f2008f10824da.tar.gz zabbix-70f35ff303e4c22ff4e38d42953f2008f10824da.tar.xz zabbix-70f35ff303e4c22ff4e38d42953f2008f10824da.zip | |
- [DEV-173] added support of notification escalations on server side
git-svn-id: svn://svn.zabbix.com/trunk@5727 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/defines.inc.php')
| -rw-r--r-- | frontends/php/include/defines.inc.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/frontends/php/include/defines.inc.php b/frontends/php/include/defines.inc.php index 07610a02..d6eb158e 100644 --- a/frontends/php/include/defines.inc.php +++ b/frontends/php/include/defines.inc.php @@ -230,10 +230,13 @@ define('ALERT_STATUS_SENT',1); define('ALERT_STATUS_FAILED',2); - define('ALERT_TYPE_EMAIL',0); - define('ALERT_TYPE_EXEC',1); - define('ALERT_TYPE_SMS',2); - define('ALERT_TYPE_JABBER',3); + define('ALERT_TYPE_MESSAGE',0); + define('ALERT_TYPE_COMMAND',1); + + define('MEDIA_TYPE_EMAIL',0); + define('MEDIA_TYPE_EXEC',1); + define('MEDIA_TYPE_SMS',2); + define('MEDIA_TYPE_JABBER',3); define('ACTION_STATUS_ENABLED',0); define('ACTION_STATUS_DISABLED',1); |
