]> git.mxchange.org Git - mailer.git/blobdiff - inc/profile-updte.php
New wrapper functions enableBlockMode() and isBlockModeEnabled() introduced
[mailer.git] / inc / profile-updte.php
index 17f56d3d866d49272e6024794423638af54455a4..ca85ac4d330235dbe37dbe2434ab6932020adbb6 100644 (file)
  * Kurzbeschreibung  : Sendet Erinnerngen aus, damit die Profile        *
  *                     von den Mitgliedern aktuell gehalten werden      *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
-{
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+if (!defined('__SECURITY')) {
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
-if (($_CONFIG['send_prof_update'] == "Y") && ($_CONFIG['profile_update'] > 0) && ($_CONFIG['resend_profile_update']))
-{
-       // Ok, we shall send update notifications...
-       $TIMEOUT  = bigintval(time() - $_CONFIG['profile_update']);
-       $TIMEOUT2 = bigintval(time() - $_CONFIG['resend_profile_update']);
+if ((getConfig('send_prof_update') == 'Y') && (getConfig('profile_update') > 0) && (getConfig('resend_profile_update'))) {
+       // Load personal data              0      1        2          3
+       $result = SQL_QUERY_ESC("SELECT userid, email, last_update, joined
+FROM
+       {!_MYSQL_PREFIX!}_user_data
+WHERE
+       (last_update < (UNIX_TIMESTAMP() - %s) AND last_update != 0 AND last_profile_sent < (UNIX_TIMESTAMP() - %s))
+OR
+       (last_update=0 AND last_profile_sent=0 AND joined < (UNIX_TIMESTAMP() - %s))
+ORDER BY `userid` ASC", array(getConfig('profile_update'), getConfig('resend_profile_update'), getConfig('profile_update')), __FILE__, __LINE__);
 
-       // Load personal data              0      1     2      3        4          5         6
-       $result = SQL_QUERY_ESC("SELECT userid, email, gender, surname, family, last_update, joined
- FROM "._MYSQL_PREFIX."_user_data
- WHERE (last_update < %s AND last_update != '0' AND last_profile_sent < %s) OR (last_update='0' AND last_profile_sent='0' AND joined < %s)
- ORDER BY userid", array($TIMEOUT, $TIMEOUT2, $TIMEOUT), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) > 0)
-       {
+       // Do we have some notifications to sent?
+       if (SQL_NUMROWS($result) > 0) {
                // We need to send-out notifications...
-               while ($DATA = SQL_FETCHROW($result))
-               {
-                       $DATA[6] = MAKE_DATETIME($DATA[6], "0");
-                       if (round($DATA[5]) == "0")
-                       {
+               while ($content = SQL_FETCHARRAY($result)) {
+                       // Translate timestamp
+                       $content['joined'] = generateDateTime($content['joined'], '0');
+
+                       if (round($content['last_update']) == '0') {
                                // Has never changed his accont
-                               $DATA[5] = PROFILE_NEVER_CHANGED;
-                       }
-                        else
-                       {
+                               $content['last_update'] = getMessage('PROFILE_NEVER_CHANGED');
+                       } else {
                                // Has changed his account
-                               $DATA[5] = MAKE_DATETIME($DATA[5], "0");
+                               $content['last_update'] = generateDateTime($content['last_update'], '0');
                        }
 
                        // Load email template and send mail away
-                       $msg = LOAD_EMAIL_TEMPLATE("profile-updte", "", bigintval($DATA[0]));
-                       SEND_EMAIL($DATA[1], PROFILE_OUTDATED, $msg);
+                       $msg = LOAD_EMAIL_TEMPLATE("profile-updte", '', bigintval($content['userid']));
+                       sendEmail($content['email'], getMessage('PROFILE_OUTDATED'), $msg);
 
                        // Update profile data
-                       $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET last_profile_sent=UNIX_TIMESTAMP(), notified='Y' WHERE userid=%s LIMIT 1",
-                        array(bigintval($DATA[0])), __FILE__, __LINE__);
-               }
-       }
+                       SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET last_profile_sent=UNIX_TIMESTAMP(), notified='Y' WHERE userid=%s LIMIT 1",
+                       array(bigintval($content['userid'])), __FILE__, __LINE__);
+               } // END - while
+       } // END - if
 
        // Free result
        SQL_FREERESULT($result);
 }
+
 //
 ?>