summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/defines.inc.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-01-29 12:12:26 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-01-29 12:12:26 +0000
commit0c12891108a86a1059340fd5597a08bd05db8024 (patch)
tree80bbad9358e585e1580745ab941a4468ce38f1d2 /frontends/php/include/defines.inc.php
parent6ccee53e0c5951bfd9d349863a6afa05437551f6 (diff)
downloadzabbix-0c12891108a86a1059340fd5597a08bd05db8024.tar.gz
zabbix-0c12891108a86a1059340fd5597a08bd05db8024.tar.xz
zabbix-0c12891108a86a1059340fd5597a08bd05db8024.zip
- [DEV-103] added support of disabling login rights for a users group (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5287 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/defines.inc.php')
-rw-r--r--frontends/php/include/defines.inc.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/frontends/php/include/defines.inc.php b/frontends/php/include/defines.inc.php
index 7328c677..8bbceb64 100644
--- a/frontends/php/include/defines.inc.php
+++ b/frontends/php/include/defines.inc.php
@@ -338,8 +338,11 @@
define('USER_TYPE_ZABBIX_ADMIN', 2);
define('USER_TYPE_SUPER_ADMIN', 3);
- define('USER_STATUS_DISABLED', 1);
- define('USER_STATUS_ENABLED', 0);
+ define('GROUP_STATUS_DISABLED', 1);
+ define('GROUP_STATUS_ENABLED', 0);
+
+ define('GROUP_GUI_ACCESS_DISABLED', 1);
+ define('GROUP_GUI_ACCESS_ENABLED', 0);
define('PERM_MAX', 3);
define('PERM_READ_WRITE', 3);