]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-sub_points.php
Updated copyright year.
[mailer.git] / inc / modules / admin / what-sub_points.php
index 804e29413fef74ece1565f4e33fa47970c5eafa5..a7172e03d88b453c193e2c70a0154a3c63a26e2a 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 11/23/2003 *
- * ===============                              Last change: 09/23/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 11/23/2003 *
+ * ===================                          Last change: 09/23/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-sub_points.php                              *
  * $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                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
+ * For more information visit: http://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 *
  ************************************************************************/
 
 // 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', __FILE__);
-
-// Fix a notice
-if (!REQUEST_ISSET_GET('uid')) REQUEST_SET_GET('uid', '');
-
-if (REQUEST_GET('uid') == "all") {
-       // Add points to all accounts
-       // @TODO Rewrite this constant
-       define('__POINTS_VALUE', REQUEST_POST('points'));
+addYouAreHereLink('admin', __FILE__);
 
+if (getRequestElement('userid') == 'all') {
        // Is the form sent?
-       if ((IS_FORM_SENT()) && (REQUEST_POST('points') > 0)) {
-               $result_main = SQL_QUERY("SELECT userid, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC",
-               __FILE__, __LINE__);
-               while ($content = SQL_FETCHARRAY($result_main)) {
-                       // Ok, add points to used points and send an email to him...
-                       SUB_POINTS("admin_all", $content['userid'], REQUEST_POST('points'));
-
-                       // Add more content
-                       $content['text']   = SQL_ESCAPE(REQUEST_POST('reason'));
-                       $content['points'] = bigintval(REQUEST_POST('points'));
+       if ((isFormSent()) && (postRequestElement('points') > 0)) {
+               // Add points to all accounts
+               $content['points'] = bigintval(postRequestElement('points'));
+
+               // Load userid
+               $result_main = sqlQuery("SELECT `userid`, `email` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC",
+                       __FILE__, __LINE__);
+               while ($row = sqlFetchArray($result_main)) {
+                       // Merge both arrays
+                       $content = merge_array($content, $row);
+
+                       // Ok, add points to used points, send an email to him and ignore return status
+                       subtractPoints('admin_sub_all', $content['userid'], postRequestElement('points'));
+
+                       // Prepare content
+                       $content = array(
+                               'reason'  => sqlEscapeString(postRequestElement('reason')),
+                               'points'  => bigintval(postRequestElement('points')),
+                               'subject' => 'admin_sub_all',
+                       );
 
                        // Load message and send it away
-                       $msg = LOAD_EMAIL_TEMPLATE("sub-points", $content, bigintval($content['userid']));
-                       sendEmail($content['email'], getMessage('ADMIN_SUB_SUBJ'), $msg);
+                       $message = loadEmailTemplate('member_sub_points', $content, bigintval($content['userid']));
+                       sendEmail($row['userid'], '{--ADMIN_SUB_POINTS_SUBJECT--}', $message);
                } // END - while
 
                // Free memory
-               SQL_FREERESULT($result_main);
+               sqlFreeResult($result_main);
 
                // Output message
-               LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_ALL_POINTS_SUBTRACTED'));
+               displayMessage('{--ADMIN_ALL_POINTS_SUB_DONE--}');
        } else {
                // Display form add points
-               LOAD_TEMPLATE("admin_sub_points_all");
+               loadTemplate('admin_sub_points_all');
        }
-} elseif (REQUEST_ISSET_GET('uid')) {
-       // User ID found in URL so we use this give him some credits
-       $result = SQL_QUERY_ESC("SELECT surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s AND `status`='CONFIRMED' LIMIT 1",
-       array(bigintval(REQUEST_GET('uid'))),__FILE__, __LINE__);
-       if (SQL_NUMROWS($result) == 1) {
+} elseif (isGetRequestElementSet('userid')) {
+       // User id found in URL so we use this give him some credits
+       if (fetchUserData(getRequestElement('userid'))) {
                // Selected user does exist
-               $content = SQL_FETCHARRAY($result);
+               $content = getUserDataArray();
 
-               if ((IS_FORM_SENT()) && (REQUEST_ISSET_POST(('points')))) {
-                       // Ok, add to used points and send an email to him...
-                       SUB_POINTS("admin_single", bigintval(REQUEST_GET('uid')), REQUEST_POST('points'));
+               if ((isFormSent()) && (isPostRequestElementSet('points'))) {
+                       // Ok, add to used points, send an email to him and ignore return status
+                       subtractPoints('admin_sub_single', bigintval(getRequestElement('userid')), postRequestElement('points'));
 
-                       // Add more content
-                       $content['text']   = SQL_ESCAPE(REQUEST_POST('reason'));
-                       $content['points'] = bigintval(REQUEST_POST('points'));
+                       // Prepare content
+                       $content = array(
+                               'reason'  => sqlEscapeString(postRequestElement('reason')),
+                               'points'  => bigintval(postRequestElement('points')),
+                               'subject' => 'admin_sub_single',
+                       );
 
                        // Load email and send it away
-                       $msg = LOAD_EMAIL_TEMPLATE("sub-points", $content, bigintval(REQUEST_GET('uid')));
-                       sendEmail($content['email'], getMessage('ADMIN_SUB_SUBJ'), $msg);
+                       $message = loadEmailTemplate('member_sub_points', $content, bigintval(getRequestElement('userid')));
+                       sendEmail(getRequestElement('userid'), '{--ADMIN_SUB_POINTS_SUBJECT--}', $message);
 
                        // Output message
-                       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_POINTS_SUBTRACTED'));
+                       displayMessage('{--ADMIN_POINTS_SUBTRACTED--}');
                } else {
-                       // @TODO Rewrite these constants
-                       define('__USER_VALUE', "<a href=\"".generateMemberEmailLink($content['email'], "user_data")."\">".$content['surname']." ".$content['family']."</a>");
-                       define('__UID', bigintval(REQUEST_GET('uid')));
+                       // Prepare content
+                       $content['userid'] = bigintval(getRequestElement('userid'));
 
                        // Load form
-                       LOAD_TEMPLATE("admin_sub_points");
+                       loadTemplate('admin_sub_points', FALSE, $content);
                }
        } else {
-               // User not found!
-               LOAD_TEMPLATE('admin_settings_saved', false, "<div class=\"admin_failed\">".sprintf(getMessage('ADMIN_MEMBER_404'), REQUEST_GET('uid'))."</div>");
+               // User not found
+               displayErrorMessage('{%message,ADMIN_MEMBER_404=' . bigintval(getRequestElement('userid')) . '%}');
        }
-
-       // Free result
-       SQL_FREERESULT($result);
 } else {
        // Output selection form with all confirmed user accounts listed
-       ADD_MEMBER_SELECTION_BOX('0', true);
+       addMemberSelectionBox(0, TRUE);
 }
 
-//
+// [EOF]
 ?>