Missing theme extension fixed in theme_edit/theme_import
[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 ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR ("admin", basename(__FILE__));
42
43 // Check for accounts
44 $result = 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__);
45
46 if (SQL_NUMROWS($result) > 0) {
47         // We have some (new?) registrations!
48         $SW = 2; $OUT = "";
49         while (list($uid, $gender, $sname, $fname, $email, $IP, $ref, $hash) = SQL_FETCHROW($result)) {
50                 if ($ref > 0) $ref = ADMIN_USER_PROFILE_LINK($ref);
51                 // Prepare array for the row template
52                 $content = array(
53                         'sw'     => $SW,
54                         'gender' => TRANSLATE_GENDER($gender),
55                         'sname'  => $sname,
56                         'fname'  => $fname,
57                         'email'  => "<A href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".$email."</A>",
58                         'ip'     => $IP,
59                         'ref'    => $ref,
60                         'hash'   => $hash,
61                         'link'   => ADMIN_USER_PROFILE_LINK($uid),
62                 );
63
64                 // Load row template and switch color
65                 $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content);
66                 $SW = 3 - $SW;
67         }
68
69         // Remember rows
70         define('__REG_ROWS', $OUT);
71
72         // Load main template
73         LOAD_TEMPLATE("admin_reg");
74 } else {
75         // No registrations left - or all has confirmed their email address... :-)
76         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_ALL_CONFIRMED_EMAIL);
77 }
78
79 // Free memory
80 SQL_FREERESULT($result);
81
82 //
83 ?>