]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_norefs.php
Since Wernis API 0.6-BETA SHA256 is the default now
[mailer.git] / inc / modules / admin / what-list_norefs.php
index a541084bacefccf7e0653f1571cce42d00bdf993..f551ef47b7591c74e7b59193e56a1fa6505a87ab 100644 (file)
@@ -1,190 +1,3 @@
 <?php
-/************************************************************************
- * MXChange v0.2.1                                    Start: 01/19/2006 *
- * ================                             Last change: 01/19/2006 *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * File              : what-list_norefs.php                             *
- * -------------------------------------------------------------------- *
- * Short description : Show all members w/o a referal                   *
- * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Alle Mitgliederaccounts ohne Werber auflisten    *
- * -------------------------------------------------------------------- *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
- *                                                                      *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or    *
- * (at your option) any later version.                                  *
- *                                                                      *
- * This program is distributed in the hope that it will be useful,      *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
- * GNU General Public License for more details.                         *
- *                                                                      *
- * You should have received a copy of the GNU General Public License    *
- * along with this program; if not, write to the Free Software          *
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
- * MA  02110-1301  USA                                                  *
- ************************************************************************/
-
-// Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-} elseif ((!EXT_IS_ACTIVE("user")) || (GET_EXT_VERSION("user") == "")) {
-       // Not active!
-       ADD_FATAL(sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "user"));
-       return;
-}
-
-// Add description as navigation point
-ADD_DESCR("admin", __FILE__);
-
-$MORE = ", userid"; $colspan = "4"; //                 27
-if (EXT_IS_ACTIVE("nickname")) { $MORE = ", nickname"; }
-
-if (empty($_GET['letter'])) { $_GET['letter'] = _ALL2;    }
-if (empty($_GET['sortby'])) { $_GET['sortby'] = "userid"; }
-if (empty($_GET['page']))   { $_GET['page']   = "1";      }
-
-// Set base URL
-$BASE = "[<A href=\"".URL."/modules.php?module=admin";
-
-$whereStatement = " WHERE refid=0";
-if (($_GET['letter'] != _ALL2) && ($_GET['letter'] != _OTHERS) && (!empty($_GET['letter']))) {
-       // List only persons w
-       $whereStatement = " WHERE refid=0 AND family LIKE '".$_GET['letter']."%'";
-}
-
-// Fix sorter
-if ($_GET['sortby'] == "family_name") $_GET['sortby'] = "family";
-
-// Construct query
-$SQL = "SELECT userid, gender, surname, family, email, REMOTE_ADDR, refid, status, emails_sent, mails_confirmed, emails_received".$MORE."
-FROM "._MYSQL_PREFIX."_user_data
-".$whereStatement."
-ORDER BY ".SQL_ESCAPE($_GET['sortby']);
-
-// Start master query
-$result_master = SQL_QUERY($SQL, __FILE__, __LINE__);
-
-// Calculate page count (0.5 fixes a bug with page count)
-$PAGES = round(SQL_NUMROWS($result_master) / $_CONFIG['user_limit'] + 0.5);
-
-if (empty($_GET['page']))   $_GET['page']   = "1";
-if (empty($_GET['offset'])) $_GET['offset'] = $_CONFIG['user_limit'];
-
-// Add limitation to SQL string and run him again
-$SQL .= " LIMIT ".($_GET['offset'] * $_GET['page'] - $_GET['offset']).", ".$_GET['offset'];
-$result = SQL_QUERY($SQL, __FILE__, __LINE__);
-
-$result_user = SQL_QUERY("SELECT emails_sent FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED'", __FILE__, __LINE__);
-$user_count = SQL_NUMROWS($result_user);
-SQL_FREERESULT($result_user);
-
-if (SQL_NUMROWS($result_master) > 0)
-{
-       // We have some (new?) registrations!
-       define('__COLSPAN1'  , $colspan);
-       define('__COLSPAN2'  , ($colspan + 2));
-       define('__USER_CNT'  , $user_count);
-       define('__ALPHA_SORT', alpha($_GET['sortby'], $colspan, true));
-       define('__SORT_LINKS', SortLinks($_GET['letter'], $_GET['sortby'], $colspan, true));
-       define('__TITLE'     , ADMIN_LIST_NOREFS_ACCOUNTS);
-
-       if ($PAGES > 1) {
-               // Add navigation
-               define('__PAGE_NAV', ADD_PAGENAV($PAGES, $_CONFIG['user_limit'], true, $colspan, true));
-       } else {
-               // No page navigation is required
-               define('__PAGE_NAV', "");
-       }
-
-       // Column with nickname when nickname extension is present
-       if (EXT_IS_ACTIVE("nickname")) {
-               // Nickname extension found
-               define('__NICKNAME_TH', "  <TD class=\"admin_title bottom2\" align=\"center\">".NICKNAME."</TD>");
-       } else {
-               // Not found
-               define('__NICKNAME_TH', "");
-       }
-
-       $SW = 2; $OUT = "";
-       while (list($uid, $gender, $sname, $fname, $email, $IP, $ref, $status, $emails_sent, $mails_confirmed, $emails_received, $nick) = SQL_FETCHROW($result)) {
-               // Get unconfirmed emails
-               $LINKS = GET_TOTAL_DATA($uid, "user_links", "id", "userid", true);
-
-               // Set link to unconfirmed emails
-               if ($LINKS > 0) {
-                       // Translate value
-                       $LINKS = TRANSLATE_COMMA($LINKS);
-
-                       // Add link
-                       $LINKS = $BASE."&amp;what=list_links&amp;u_id=".$uid."\">".$LINKS."</A>]";
-               } // END - if
-
-               // Add nickname
-               if ((empty($nick)) || ($uid == $nick)) $nick = "---";
-
-               // Sent emails
-               $SENT = $emails_sent;
-               if ($emails_sent > 0) $SENT = $BASE."&amp;what=email_details&amp;u_id=".$uid."\">".TRANSLATE_COMMA($emails_sent)."</A>]";
-
-               // Calculate total points
-               $pointsTotal = GET_TOTAL_DATA($uid, "user_points", "points")  - GET_TOTAL_DATA($uid, "user_data", "used_points");
-
-               // Clickrate
-               $clickRate = 0;
-               if ($emails_received > 0) {
-                       $clickRate = $mails_confirmed / $emails_received * 100;
-               } // END - if
-
-               // Transfer data to array
-               $content = array(
-                       'sw'     => $SW,
-                       'uid'    => ADMIN_USER_PROFILE_LINK($uid),
-                       'gender' => TRANSLATE_GENDER($gender),
-                       'sname'  => $sname,
-                       'fname'  => $fname,
-                       'email'  => "[<A href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".$email."</A>]",
-                       'addr'   => $IP,
-                       'ref'    => $ref,
-                       'status' => TRANSLATE_STATUS($status),
-                       'links'  => $LINKS,
-                       'alinks' => MEMBER_ACTION_LINKS($uid, $status),
-                       'nick'   => $nick,
-                       'points' => TRANSLATE_COMMA($pointsTotal),
-                       'sent'   => $SENT,
-                       'rate'   => TRANSLATE_COMMA($clickRate),
-                       'locked' => TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "locked_points"))
-               );
-
-               // Load row template and switch colors
-               $OUT .= LOAD_TEMPLATE("admin_list_user_row", true, $content);
-               $SW = 3 - $SW;
-       } // END - while
-
-       // Free memory
-       SQL_FREERESULT($result);
-
-       define('__USER_ROWS', $OUT);
-
-       // Load main template
-       LOAD_TEMPLATE("admin_list_user");
-
-       // Free some memory
-       SQL_FREERESULT($result_master);
-} else {
-       // No one as registered so far! :-(
-       LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_ACCOUNT_NOREFS_404);
-}
-
-// Free memory
-SQL_FREERESULT($result_master);
-
-//
+// @DEPRECATED
 ?>