]> git.mxchange.org Git - mailer.git/blob - inc/reset/reset_profile.php
Removed comment introduced by Profi-Concept, this comment should fine (in a much...
[mailer.git] / inc / reset / reset_profile.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/24/2009 *
4  * ===================                          Last change: 06/20/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : reset_profile.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Sends out notifications to keep profiles updated *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Sendet Erinnerngen aus, damit die Profile        *
12  *                     von den Mitgliedern aktuell gehalten werden      *
13  * -------------------------------------------------------------------- *
14  * $Revision::                                                        $ *
15  * $Date::                                                            $ *
16  * $Tag:: 0.2.1-FINAL                                                 $ *
17  * $Author::                                                          $ *
18  * -------------------------------------------------------------------- *
19  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
20  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } elseif ((!isHtmlOutputMode()) || (!isResetModeEnabled())) {
43         // Do not execute when script is in CSS mode or no daily reset
44         return;
45 } elseif (!isExtensionActive('profile')) {
46         logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
47         return;
48 }
49
50 if ((isSendProfileUpdateEnabled()) && (getProfileUpdate() > 0) && (getResendProfileUpdate() > 0)) {
51         // Load personal data
52         $result = SQL_QUERY("SELECT
53         `userid`, `email`, `last_update`, `joined`
54 FROM
55         `{?_MYSQL_PREFIX?}_user_data`
56 WHERE
57         `status`='CONFIRMED' AND (
58                 (
59                         `last_update` < (UNIX_TIMESTAMP() - {?profile_update?}) AND
60                         `last_update` > 0 AND
61                         `last_profile_sent` < (UNIX_TIMESTAMP() - {?resend_profile_update?})
62                 ) OR (
63                         `last_update` = 0 AND
64                         `last_profile_sent` = 0 AND
65                         `joined` < (UNIX_TIMESTAMP() - {?profile_update?})
66                 )
67         )
68 ORDER BY
69         `userid` ASC", __FILE__, __LINE__);
70
71         // Do we have some notifications to sent?
72         if (!SQL_HASZERONUMS($result)) {
73                 // We need to send-out notifications...
74                 while ($content = SQL_FETCHARRAY($result)) {
75                         // Translate timestamp
76                         $content['joined'] = generateDateTime($content['joined'], 0);
77
78                         if (round($content['last_update']) == '0') {
79                                 // Has never changed his accont
80                                 $content['last_update'] = '{--MEMBER_PROFILE_NEVER_CHANGED--}';
81                         } else {
82                                 // Has changed his account
83                                 $content['last_update'] = generateDateTime($content['last_update'], 0);
84                         }
85
86                         // Load email template and send mail away
87                         $message = loadEmailTemplate('member_profile', $content, bigintval($content['userid']));
88                         sendEmail($content['email'], '{--MEMBER_PROFILE_OUTDATED_SUBJECT--}', $message);
89
90                         // Update profile data
91                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `last_profile_sent`=UNIX_TIMESTAMP(), `notified`='Y' WHERE `userid`=%s LIMIT 1",
92                                 array(bigintval($content['userid'])), __FILE__, __LINE__);
93                 } // END - while
94         } // END - if
95
96         // Free result
97         SQL_FREERESULT($result);
98 } // END - if
99
100 // [EOF]
101 ?>