]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-add_points.php
Updated copyright notice as there are changes in this year
[mailer.git] / inc / modules / admin / what-add_points.php
index ef6c84659d95bca9b1dbb66380b448d7a6c7b90e..24bab6a25e36fdbb1be1f9cb8664b79588151e82 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -58,24 +58,23 @@ if (getRequestElement('userid') == 'all') {
                        // Merge $row into $content
                        $content = merge_array($content, $row);
 
-                       // Remove depth to prevent booking errors. This is a bad coding
-                       // practice, thats also why we need to write this project from
-                       // scratch...
-                       $GLOBALS['ref_level'] = -1;
+                       // Init referral system
+                       initReferralSystem();
 
                        // Ok, add points and send an email to him...
-                       addPointsDirectly('admin_all', $content['userid'], bigintval(postRequestElement('points')));
+                       addPointsThroughReferralSystem('admin_add_all', $content['userid'], bigintval(postRequestElement('points')));
 
                        // Prepare content
                        $content = array(
-                               'reason' => SQL_ESCAPE(postRequestElement('reason')),
-                               'points' => bigintval(postRequestElement('points')),
-                               'userid' => $row['userid']
+                               'reason'  => SQL_ESCAPE(postRequestElement('reason')),
+                               'points'  => bigintval(postRequestElement('points')),
+                               'userid'  => $row['userid'],
+                               'subject' => 'admin_add_all',
                        );
 
                        // Load email template and send email away
                        $message = loadEmailTemplate('member_add_points', $content, bigintval($content['userid']));
-                       sendEmail(bigintval($content['userid']), '{--ADMIN_ADD_SUBJECT--}', $message);
+                       sendEmail(bigintval($content['userid']), '{--ADMIN_ADD_POINTS_SUBJECT--}', $message);
                } // END - while
 
                // Free memory
@@ -94,34 +93,41 @@ if (getRequestElement('userid') == 'all') {
                $content = getUserDataArray();
 
                if ((isFormSent()) && (isPostRequestElementSet('points'))) {
+                       // Init referral system
+                       initReferralSystem();
+
                        // Add points and send an email to him...
-                       addPointsDirectly('admin_single', bigintval(getRequestElement('userid')), bigintval(postRequestElement('points')));
+                       addPointsThroughReferralSystem('admin_add_single', bigintval(getRequestElement('userid')), bigintval(postRequestElement('points')));
 
                        // Prepare content
                        $content = array(
-                               'reason' => SQL_ESCAPE(postRequestElement('reason')),
-                               'points' => bigintval(postRequestElement('points'))
+                               'reason'  => SQL_ESCAPE(postRequestElement('reason')),
+                               'points'  => bigintval(postRequestElement('points')),
+                               'subject' => 'admin_add_single',
                        );
 
-                       // Message laden
+                       // Load message
                        $message = loadEmailTemplate('member_add_points', $content, bigintval(getRequestElement('userid')));
 
-                       sendEmail(bigintval(getRequestElement('userid')), '{--ADMIN_ADD_SUBJECT--}', $message);
+                       // Send the email out
+                       sendEmail(bigintval(getRequestElement('userid')), '{--ADMIN_ADD_POINTS_SUBJECT--}', $message);
+
+                       // ... and display a message
                        displayMessage('{--ADMIN_POINTS_ADDED--}');
                } else {
                        // Prepare content
                        $content['userid'] = bigintval(getRequestElement('userid'));
 
                        // Output template
-                       loadTemplate('admin_add_points', false, $content);
+                       loadTemplate('admin_add_points', FALSE, $content);
                }
        } else {
                // User not found
-               loadTemplate('admin_settings_unsaved', false, '{%message,ADMIN_MEMBER_404=' . bigintval(getRequestElement('userid')) . '%}');
+               displayErrorMessage('{%message,ADMIN_MEMBER_404=' . bigintval(getRequestElement('userid')) . '%}');
        }
 } else {
        // Output selection form with all confirmed user accounts listed
-       addMemberSelectionBox(0, true);
+       addMemberSelectionBox(0, TRUE);
 }
 
 // [EOF]