]> git.mxchange.org Git - mailer.git/blobdiff - inc/databases.php
mailer project continued:
[mailer.git] / inc / databases.php
index 8e42f451283f0d8a4e1cc5a4de95827071ae70c6..851d3eec9f2f0bff7786407adad6dd39b11e0597 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -41,48 +41,51 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // System-wide return codes
-addCode('WRONG_PASS'         , 0x001);
-addCode('WRONG_ID'           , 0x002);
-addCode('ACCOUNT_LOCKED'     , 0x003);
-addCode('ACCOUNT_UNCONFIRMED', 0x004);
-addCode('ACCOUNT_UNKNOWN'    , 0x005);
-addCode('UNKNOWN_STATUS'     , 0x006);
-addCode('NO_MAIL_TYPE'       , 0x007);
-addCode('CNTR_FAILED'        , 0x008);
-addCode('LOGOUT_DONE'        , 0x009);
-addCode('LOGOUT_FAILED'      , 0x00a);
-addCode('URL_TIME_LOCK'      , 0x00b);
-addCode('URL_FOUND'          , 0x00c);
-addCode('OVERLENGTH'         , 0x00d);
-addCode('SUBJECT_URL'        , 0x00e);
-addCode('BLIST_URL'          , 0x00f);
-addCode('NO_RECS_LEFT'       , 0x010);
-addCode('INVALID_TAGS'       , 0x011);
-addCode('MORE_POINTS'        , 0x012);
-addCode('COOKIES_DISABLED'   , 0x013);
-addCode('DATA_INVALID'       , 0x014);
-addCode('POSSIBLE_INVALID'   , 0x015);
-addCode('USER_404'           , 0x016);
-addCode('STATS_404'          , 0x017);
-addCode('ALREADY_CONFIRMED'  , 0x018);
-addCode('ERROR_MAILID'       , 0x019);
-addCode('EXTENSION_PROBLEM'  , 0x01a);
-addCode('MORE_RECEIVERS1'    , 0x01b);
-addCode('MORE_RECEIVERS2'    , 0x01c);
-addCode('MORE_RECEIVERS3'    , 0x01d);
-addCode('INVALID_URL'        , 0x01e);
-addCode('MENU_NOT_VALID'     , 0x01f);
-addCode('LOGIN_FAILED'       , 0x020);
-addCode('BEG_SAME_AS_OWN'    , 0x021);
-addCode('UNHANDLED_STATUS'   , 0x022);
-addCode('MODULE_MEMBER_ONLY' , 0x023);
-addCode('UNKNOWN_ERROR'      , 0x024);
-addCode('PROFILE_UPDATED'    , 0x025);
+addCode('WRONG_PASS'          , 0x001);
+addCode('WRONG_ID'            , 0x002);
+addCode('ACCOUNT_LOCKED'      , 0x003);
+addCode('ACCOUNT_UNCONFIRMED' , 0x004);
+addCode('ACCOUNT_UNKNOWN'     , 0x005);
+addCode('UNKNOWN_STATUS'      , 0x006);
+addCode('NO_MAIL_TYPE'        , 0x007);
+addCode('CNTR_FAILED'         , 0x008);
+addCode('LOGOUT_DONE'         , 0x009);
+addCode('LOGOUT_FAILED'       , 0x00a);
+addCode('URL_TIME_LOCK'       , 0x00b);
+addCode('URL_FOUND'           , 0x00c);
+addCode('OVERLENGTH'          , 0x00d);
+addCode('SUBJECT_URL'         , 0x00e);
+addCode('BLIST_URL'           , 0x00f);
+addCode('NO_RECS_LEFT'        , 0x010);
+addCode('INVALID_TAGS'        , 0x011);
+addCode('MORE_POINTS'         , 0x012);
+addCode('COOKIES_DISABLED'    , 0x013);
+addCode('DATA_INVALID'        , 0x014);
+addCode('POSSIBLE_INVALID'    , 0x015);
+addCode('USER_404'            , 0x016);
+addCode('STATS_404'           , 0x017);
+addCode('ALREADY_CONFIRMED'   , 0x018);
+addCode('ERROR_MAILID'        , 0x019);
+addCode('EXTENSION_PROBLEM'   , 0x01a);
+addCode('MORE_RECEIVERS1'     , 0x01b);
+addCode('MORE_RECEIVERS2'     , 0x01c);
+addCode('MORE_RECEIVERS3'     , 0x01d);
+addCode('INVALID_URL'         , 0x01e);
+addCode('MENU_NOT_VALID'      , 0x01f);
+addCode('LOGIN_FAILED'        , 0x020);
+addCode('BEG_SAME_AS_OWN'     , 0x021);
+addCode('UNHANDLED_STATUS'    , 0x022);
+addCode('MODULE_MEMBER_ONLY'  , 0x023);
+addCode('UNKNOWN_ERROR'       , 0x024);
+addCode('PROFILE_UPDATED'     , 0x025);
+addCode('UNKNOWN_REDIRECT'    , 0x026);
+addCode('LOGIN_EMPTY_ID'      , 0x027);
+addCode('LOGIN_EMPTY_PASSWORD', 0x028);
 
 // Full version
 setConfigEntry('FULL_VERSION', '0.2.1-FINAL');
 
-// Server-URL (DO NOT CHANGE THIS OR YOU CANNOT CHECK FOR UPDATES/EXTENSIONS!)
+// Server-URL (DO NOT CHANGE THIS OR YOU CANNOT CHECK FOR UPDATES!)
 setConfigEntry('SERVER_URL', 'http://mxchange.org');
 
 // One day
@@ -100,5 +103,17 @@ setConfigEntry('ENCRYPT_SEPARATOR', ':');
 // Extra title is empty by default
 setExtraTitle('');
 
+// Time unit translations
+$GLOBALS['time_units'] = array(
+       // Data value -> string-representation
+       'Y' => 'YEAR',
+       'M' => 'MONTH',
+       'W' => 'WEEK',
+       'D' => 'DAY',
+       'h' => 'HOUR',
+       'm' => 'MINUTE',
+       's' => 'SECOND',
+);
+
 // [EOF]
 ?>