]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-chk_regs.php
New method generateExtensionInactiveMessage() introduced
[mailer.git] / inc / modules / admin / what-chk_regs.php
index 78ab8bca61fafbcd7be2ae2662e7545a44bb29b3..ec1cb4abe73db0b94ff057d6e470f3c79f1653e4 100644 (file)
  * -------------------------------------------------------------------- *
  * 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                           *
  * For more information visit: http://www.mxchange.org                  *
 
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR ("admin", basename(__FILE__));
+ADD_DESCR ('admin', basename(__FILE__));
 
 // Check for accounts
 $result = SQL_QUERY("SELECT userid, gender, surname, family, email, REMOTE_ADDR, refid, user_hash
@@ -48,23 +53,23 @@ ORDER BY userid ASC", __FILE__, __LINE__);
 
 if (SQL_NUMROWS($result) > 0) {
        // We have some (new?) registrations!
-       $OUT = ""; $SW = 2;
+       $OUT = ''; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
                // Add link to refid
-               if ($content['refid'] > 0) $content['refid'] = ADMIN_USER_PROFILE_LINK($content['refid']);
+               if ($content['refid'] > 0) $content['refid'] = generateUserProfileLink($content['refid']);
 
                // Prepare array for the row template
                // @TODO Rewritings: sname->surname,fname->family,ip->REMOTE_ADDR,ref->refid,hash->user_hash in template
                $content = array(
                        'sw'     => $SW,
-                       'gender' => TRANSLATE_GENDER($content['gender']),
+                       'gender' => translateGender($content['gender']),
                        'sname'  => $content['surname'],
                        'fname'  => $content['family'],
-                       'email'  => "<a href=\"".CREATE_EMAIL_LINK($content['email'], "user_data")."\">".$content['email']."</a>",
+                       'email'  => "<a href=\"".generateMemberEmailLink($content['email'], "user_data")."\">".$content['email']."</a>",
                        'ip'     => $content['REMOTE_ADDR'],
                        'ref'    => $content['refid'],
                        'hash'   => $content['user_hash'],
-                       'link'   => ADMIN_USER_PROFILE_LINK($content['userid']),
+                       'link'   => generateUserProfileLink($content['userid']),
                );
 
                // Load row template and switch color
@@ -80,7 +85,7 @@ if (SQL_NUMROWS($result) > 0) {
        LOAD_TEMPLATE("admin_reg");
 } else {
        // No registrations left - or all has confirmed their email address... :-)
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL'));
 }
 
 // Free memory