253e3e386a63bf1540600d1006802858292f34b4
[mailer.git] / inc / modules / admin / what-chk_regs.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/28/2003 *
4  * ===============                              Last change: 03/24/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-chk_regs.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Check new registrations                          *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Neue Anmeldungen pruefen                         *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40
41 // Add description as navigation point
42 ADD_DESCR ("admin", basename(__FILE__));
43
44 // Check for accounts
45 $query = SQL_QUERY("SELECT userid, gender, surname, family, email, REMOTE_ADDR, refid, user_hash FROM "._MYSQL_PREFIX."_user_data WHERE status='UNCONFIRMED' ORDER BY userid", __FILE__, __LINE__);
46
47 if (SQL_NUMROWS($query) > 0) {
48         // We have some (new?) registrations!
49         $SW = 2; $OUT = "";
50         while (list($uid, $gender, $sname, $fname, $email, $IP, $ref, $hash) = SQL_FETCHROW($query)) {
51                 if ($ref > 0) $ref = ADMIN_USER_PROFILE_LINK($ref);
52                 // Prepare array for the row template
53                 $content = array(
54                         'sw'     => $SW,
55                         'gender' => TRANSLATE_GENDER($gender),
56                         'sname'  => $sname,
57                         'fname'  => $fname,
58                         'email'  => "<A href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".$email."</A>",
59                         'ip'     => $IP,
60                         'ref'    => $ref,
61                         'hash'   => $hash,
62                         'link'   => ADMIN_USER_PROFILE_LINK($uid),
63                 );
64
65                 // Load row template and switch color
66                 $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content);
67                 $SW = 3 - $SW;
68         }
69
70         // Free memory
71         SQL_FREERESULT($query);
72         define('__REG_ROWS', $OUT);
73
74         // Load main template
75         LOAD_TEMPLATE("admin_reg");
76 } else {
77         // No registrations left - or all has confirmed their email address... :-)
78         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_ALL_CONFIRMED_EMAIL);
79 }
80
81 //
82 ?>