Forking from Mailzu 0.8RC3

This commit is contained in:
Mikko Husari
2008-12-10 15:33:43 +02:00
commit 2572b1814b
184 changed files with 79039 additions and 0 deletions

16
config/constants.php Normal file
View File

@@ -0,0 +1,16 @@
<?
define('INTERNAL_DATE_SEPERATOR', '/');
define('RES_TYPE_ADD', 'r');
define('RES_TYPE_MODIFY', 'm');
define('RES_TYPE_DELETE', 'd');
define('RES_TYPE_VIEW', 'v');
define('RES_TYPE_APPROVE', 'a');
define('INVITE_ACCEPT', 'accept');
define('INVITE_DECLINE', 'decline');
define('MYCALENDARTYPE_DAY', 1);
define('MYCALENDARTYPE_WEEK', 2);
define('MYCALENDARTYPE_MONTH', 3);
define('MYCALENDARTYPE_SIGNUP', 4);
?>