diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-04-05 09:16:29 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-04-05 09:16:29 +0000 |
| commit | 0c9653d6ab8fca3be69489943f1fcc4e9d797102 (patch) | |
| tree | 4e3d0f7e328577428161b62d3872bbdeefacb70c /frontends/php/include/defines.inc.php | |
| parent | 07abfc5904f98fd5139b5ac6d92aaa34a7ccf9b7 (diff) | |
- added latest values filtring/marking of log history (Eugene)
- developed multiple log history viewing (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@2719 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/defines.inc.php')
| -rw-r--r-- | frontends/php/include/defines.inc.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/frontends/php/include/defines.inc.php b/frontends/php/include/defines.inc.php index 0bdf2d0a..e696d580 100644 --- a/frontends/php/include/defines.inc.php +++ b/frontends/php/include/defines.inc.php @@ -194,6 +194,15 @@ define("TIME_TYPE_LOCAL", 0); define("TIME_TYPE_SERVER", 1); + define("FILTER_TAST_SHOW", 0); + define("FILTER_TAST_HIDE", 1); + define("FILTER_TAST_MARK", 2); + define("FILTER_TAST_INVERT_MARK", 3); + + define("MARK_COLOR_RED", 1); + define("MARK_COLOR_GREEN", 2); + define("MARK_COLOR_BLUE", 3); + /* Support for PHP5. PHP5 does not have $HTTP_..._VARS */ if (!function_exists('version_compare')) { |
