A lot CSS classes rewritten, please update all your themes.
[mailer.git] / inc / modules / admin / what-list_autopurge.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/26/2004 *
4  * ===================                          Last change: 06/26/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_autopurge.php                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Find inactive accounts and just list them        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Inaktive Accounts finden und dann auflisten      *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 // Exclude default referal id if set
49 // @TODO Rewrite those lines to filter
50 $EXCLUDE_LIST = '';
51 if (getConfig('def_refid') > 0)                $EXCLUDE_LIST .= ' AND d.userid != {?def_refid?}';
52 if (isExtensionActive('beg'))                  $EXCLUDE_LIST .= ' AND d.userid != {?beg_userid?}';
53 if (isExtensionActive('bonus'))                $EXCLUDE_LIST .= ' AND d.userid != {?bonus_userid?}';
54 if (isExtensionActive('doubler'))              $EXCLUDE_LIST .= ' AND d.userid != {?doubler_userid?}';
55 if (isExtensionInstalledAndNewer('holiday', '0.1.3')) $EXCLUDE_LIST .= " AND d.holiday_active='N'";
56
57 // Check for all accounts
58 $result = SQL_QUERY("SELECT
59         d.userid, d.gender, d.surname, d.family, d.email, d.joined, d.last_online, d.ap_notified
60 FROM
61         `{?_MYSQL_PREFIX?}_user_data` AS d
62 WHERE
63         d.`status`='CONFIRMED' AND
64         d.joined < (UNIX_TIMESTAMP() - {?ap_inactive_since?}) AND
65         d.last_online < (UNIX_TIMESTAMP() - {?ap_inactive_since?}) AND
66         d.ap_notified < (UNIX_TIMESTAMP() - {?ap_inactive_since?})
67         ".$EXCLUDE_LIST."
68 ORDER BY
69         d.userid ASC", __FILE__, __LINE__);
70
71 if (!SQL_HASZERONUMS($result)) {
72         // Ok, we have found some inactive accounts
73         $OUT = '';
74         while ($content = SQL_FETCHARRAY($result)) {
75                 // Prepare data for the row template
76                 $content = array(
77                         'userid'      => $content['userid'],
78                         'gender'      => $content['gender'],
79                         'surname'     => $content['surname'],
80                         'family'      => $content['family'],
81                         'email'       => '<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . $content['email'] . '</a>',
82                         'joined'      => generateDateTime($content['joined'], 2),
83                         'last_online' => generateDateTime($content['last_online'], 2),
84                         'notified'    => generateDateTime($content['ap_notified'], 2),
85                 );
86
87                 // Load row template
88                 $OUT .= loadTemplate('admin_list_autopurge_row', true, $content);
89         } // END - while
90
91         // Free memory
92         SQL_FREERESULT($result);
93         $content['rows'] = $OUT;
94
95         // Load main template
96         loadTemplate('admin_list_autopurge', false, $content);
97 } else {
98         // All members are active or you don't have any registered
99         loadTemplate('admin_settings_saved', false, '{--ADMIN_AUTOPURGE_ALL_ACTIVE--}');
100 }
101
102 // [EOF]
103 ?>