A lot code rewritten:
[mailer.git] / inc / modules / admin / what-chk_regs.php
index 28999a763e17cc2ddb84fb229fd2b92704555153..4760a601053b0ea48bfbe2ffdf2822764f2dc70b 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/28/2003 *
- * ===============                              Last change: 03/24/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 09/28/2003 *
+ * ===================                          Last change: 03/24/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-chk_regs.php                                *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Neue Anmeldungen pruefen                         *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $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                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if 
 
 // Add description as navigation point
-ADD_DESCR ("admin", basename(__FILE__));
+addMenuDescription('admin', basename(__FILE__));
 
 // Check for accounts
-$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 ASC", __FILE__, __LINE__);
+$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` ASC", __FILE__, __LINE__);
 
 if (SQL_NUMROWS($result) > 0) {
        // We have some (new?) registrations!
-       $SW = 2; $OUT = "";
-       while (list($uid, $gender, $sname, $fname, $email, $IP, $ref, $hash) = SQL_FETCHROW($result)) {
-               if ($ref > 0) $ref = ADMIN_USER_PROFILE_LINK($ref);
+       $OUT = '';
+       while ($content = SQL_FETCHARRAY($result)) {
                // Prepare array for the row template
                $content = array(
-                       'sw'     => $SW,
-                       'gender' => TRANSLATE_GENDER($gender),
-                       'sname'  => $sname,
-                       'fname'  => $fname,
-                       'email'  => "<a href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".$email."</a>",
-                       'ip'     => $IP,
-                       'ref'    => $ref,
-                       'hash'   => $hash,
-                       'link'   => ADMIN_USER_PROFILE_LINK($uid),
+                       'gender'      => $content['gender'],
+                       'surname'     => $content['surname'],
+                       'family'      => $content['family'],
+                       'email'       => '<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . $content['email'] . '</a>',
+                       'remote_addr' => $content['REMOTE_ADDR'],
+                       'refid'       => $content['refid'],
+                       'user_hash'   => $content['user_hash'],
+                       'userid'      => $content['userid'],
                );
 
                // Load row template and switch color
-               $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content);
-               $SW = 3 - $SW;
-       }
-
-       // Remember rows
-       define('__REG_ROWS', $OUT);
+               $OUT .= loadTemplate('admin_list_chk_reg_row', true, $content);
+       } // END - while
 
        // Load main template
-       LOAD_TEMPLATE("admin_reg");
+       loadTemplate('admin_list_chk_reg', false, $OUT);
 } else {
        // No registrations left - or all has confirmed their email address... :-)
-       LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_ALL_CONFIRMED_EMAIL);
+       loadTemplate('admin_settings_saved', false, '{--ADMIN_ALL_CONFIRMED_EMAIL--}');
 }
 
 // Free memory
 SQL_FREERESULT($result);
 
-//
+// [EOF]
 ?>