A lot has been rewritten, ext-teams added, ext-forced continued:
[mailer.git] / inc / modules / admin / what-list_beg.php
index 013330c1d0cfb24d5a55ce4ef1a3527565899950..b8b5d4b9f4cbcb6b2d7d89754a7b55f9362a0479 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/22/2005 *
- * ================                             Last change: 10/22/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 10/22/2005 *
+ * ===================                          Last change: 10/22/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-list_beg.php                                *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Mitglieder in Bettel-Rallye auflisten            *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2011 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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!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__));
+addYouAreHereLink('admin', __FILE__);
 
-if ($CONFIG['beg_rallye'] == "Y")
-{
+if (isBegRallyeEnabled()) {
        // Shall I withdraw now?
-       if (isset($_POST['withdraw']))
-       {
+       if (isPostRequestParameterSet('withdraw')) {
                // Okay, let's prepare...
-               $curr = date("m", time()) - 1;
-               if (strlen($curr) == 1) $curr = "0".$curr;
-               $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET beg_month='%s' WHERE config='0' LIMIT 1",
-                array($curr), __FILE__, __LINE__);
-               LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_BEG_WITHDRAW_PREPARED);
-               OUTPUT_HTML("<BR>");
-       }
+               $curr = getMonth() - 1;
+               if (strlen($curr) == 1) $curr = '0' . $curr;
+               updateConfiguration('last_month', $curr);
+               displayMessage('{--ADMIN_BEG_WITHDRAW_PREPARED--}');
+       } // END - if
+
+       // Init variable
+       $lastOnline = '';
 
        // Autopurge installed?
-       $LAST = "%s"; $ONLINE = "";
-       if (EXT_IS_ACTIVE("autopurge"))
-       {
+       if ((isExtensionActive('autopurge')) && (isBegActiveEnabled()) && ((getApInactiveSince() > 0))) {
                // Use last online timestamp to keep inactive members away from here
-               $LAST   = " AND last_online >= %s";
-               $ONLINE = bigintval(time() - $CONFIG['ap_in_since']);
-       }
+               $lastOnline   = ' AND (UNIX_TIMESTAMP() - `last_online`) < {?ap_inactive_since?}';
+       } // END - if
 
        // Check if at least one is in the active rallye
-       $result = SQL_QUERY_ESC("SELECT userid, email, sex, surname, family, beg_points, last_online
-FROM "._MYSQL_PREFIX."_user_data
-WHERE status='CONFIRMED' AND beg_points > 0".$LAST."
-ORDER BY beg_points DESC, last_online DESC, userid",
-        array($ONLINE), __FILE__, __LINE__);
+       $result = SQL_QUERY("SELECT `userid`,`gender`,`surname`,`family`,`email`,`beg_points`,`last_online`
+FROM
+       `{?_MYSQL_PREFIX?}_user_data`
+WHERE
+       `status`='CONFIRMED' AND
+       `beg_points` > 0
+       " . $lastOnline . "
+ORDER BY
+       `beg_points` DESC,
+       `last_online` DESC,
+       `userid` ASC", __FILE__, __LINE__);
 
-       if (SQL_NUMROWS($result) > 0)
-       {
+       if (!SQL_HASZERONUMS($result)) {
                // List users
-               $OUT = "";$SW = 2; $cnt = 1; $total = 0;
-               while(list($uid, $email, $sex, $sname, $fname, $turbo, $last) = SQL_FETCHROW($result))
-               {
-                       // Generate array fore the dynamic template
-                       $WIN1 = ""; $WIN2 = "";
-                       if ($cnt <= $CONFIG['beg_ranks'])
-                       {
-                               // Maybe he can win his active beg?
-                               $WIN1 = "<STRONG>";
-                               $WIN2 = "</STRONG>";
-                       }
+               $OUT = ''; $count = 1; $total = '0';
+               while ($content = SQL_FETCHARRAY($result)) {
+                       // Init variables
+                       $WIN1 = ''; $WIN2 = '';
+
+                       // Maybe he can win his active beg?
+                       if ($count <= getBegRanks()) {
+                               // Mark him
+                               $WIN1 = '<strong>';
+                               $WIN2 = '</strong>';
+                       } // END - if
+
+                       // Prepare content
                        $content = array(
-                               'uid'   => $uid,
-                               'email' => CREATE_EMAIL_LINK($email, "user_data"),
-                               'salut' => TRANSLATE_SEX($sex),
-                               'sname' => $sname,
-                               'fname' => $fname,
-                               'turbo' => TRANSLATE_COMMA($turbo),
-                               'last'  => MAKE_DATETIME($last, "2"),
-                               'sw'    => $SW,
-                               'win1'  => $WIN1,
-                               'win2'  => $WIN2,
-                               'cnt'   => $cnt,
+                               'userid'      => $content['userid'],
+                               'email'       => generateEmailLink($content['email'], 'user_data'),
+                               'gender'      => $content['gender'],
+                               'turbo'       => $content['beg_points'],
+                               'last_online' => generateDateTime($content['last_online'], 2),
+                               'win1'        => $WIN1,
+                               'win2'        => $WIN2,
+                               'count'       => $count,
                        );
 
                        // Load template and add it
-                       $OUT .= LOAD_TEMPLATE("admin_list_beg_rows", true, $content);
-                       $SW = 3 - $SW; $cnt++; $total += $turbo;
-               }
-               define('__BEG_ROWS', $OUT);
-               define('__TOTAL', TRANSLATE_COMMA($total));
+                       $OUT .= loadTemplate('admin_list_beg_rows', true, $content);
+                       $count++; $total += $content['beg_points'];
+               } // END - while
+
+               $content['rows']  = $OUT;
+               $content['total_points'] = $total;
 
                // Check if we need to display form or not with manuel withdraw
-               if ($CONFIG['beg_month'] == date("m", time()))
-               {
+               if (getLastMonth() == getMonth()) {
                        // Load form
-                       define('__BEG_WITHDRAW_FORM', LOAD_TEMPLATE("admin_list_beg_form", true));
-               }
-                else
-               {
+                       $content['withdraw_form'] = loadTemplate('admin_list_beg_form', true);
+               } else {
                        // Display message "no manual withdraw possible"
-                       define('__BEG_WITHDRAW_FORM', "<FONT class=\"admin_failed\">".ADMIN_BEG_ALREADY_WITHDRAW."</FONT>");
+                       $content['withdraw_form'] = displayMessage('{--ADMIN_BEG_ALREADY_WITHDRAW--}', true);
                }
 
                // Prepare constant for timemark
-               define('__AUTOPURGE_TIMEOUT', MAKE_DATETIME(time() - $CONFIG['ap_in_since'], "2"));
+               if (isExtensionActive('autopurge')) {
+                       $content['autopurge_timeout'] = generateDateTime(time() - getApInactiveSince(), 2);
+               } else {
+                       $content['autopurge_timeout'] = displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=autopurge%}', true);
+               }
 
                // Load final template
-               LOAD_TEMPLATE("admin_list_beg");
-       }
-        else
-       {
+               loadTemplate('admin_list_beg', false, $content);
+       } else {
                // No one has joined the begging rallye...
-               LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_BEG_NO_RALLYE);
+               displayMessage('{--ADMIN_BEG_NO_RALLYE--}');
        }
-}
- else
-{
+} else {
        // Rallye deactivated
-       LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_BEG_RALLYE_DEACTIVATED);
+       displayMessage('{--ADMIN_BEG_RALLYE_DEACTIVATED--}');
 }
 
-//
+// [EOF]
 ?>