summaryrefslogtreecommitdiff
path: root/www/constants.php
diff options
context:
space:
mode:
authorHorus32014-03-16 20:38:23 +0100
committerHorus32014-03-16 20:38:23 +0100
commit1246415f35b3a45486808d27b0649b373f2740d2 (patch)
treed28fc0b981faea663a28925dae35514c55ad4b5d /www/constants.php
parent07297d606d209aa4d70d25fe9d72d80e1131c19e (diff)
downloadfiles.iamfabulous.de-1246415f35b3a45486808d27b0649b373f2740d2.tar.gz
Added new constant 'REGISTER_INVITEKEY'
Diffstat (limited to 'www/constants.php')
-rw-r--r--www/constants.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/www/constants.php b/www/constants.php
index ece68b4..9ea8a5d 100644
--- a/www/constants.php
+++ b/www/constants.php
@@ -1,15 +1,20 @@
<?php
define("EMPTY", 0);
+
define("LOGIN_SUCCESSFULL", 1);
define("LOGIN_DATABASE", 2);
define("LOGIN_PASSWORD", 3);
+
define("LOGOUT_SUCCESSFULL", 4);
define("LOGOUT_FAILURE", 5);
+
define("REGISTER_SUCCESSFULL", 6);
define("REGISTER_PASSWORD", 7);
define("REGISTER_EMAIL", 8);
define("REGISTER_DATABASE", 9);
define("REGISTER_PROHIBITED", 10);
-define("INVITE_SUCCESSFULL", 11);
-define("INVITE_INVITES", 12);
-define("INVITE_DATABASE", 13);
+define("REGISTER_INVITEKEY", 12);
+
+define("INVITE_SUCCESSFULL", 13);
+define("INVITE_INVITES", 14);
+define("INVITE_DATABASE", 15);