]> 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 03546b16d751609971c0f1c1f557900dc339d572..24bab6a25e36fdbb1be1f9cb8664b79588151e82 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-add_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 - 2009 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * 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 *
  * it under the terms of the GNU General Public License as published by *
@@ -42,7 +41,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 } // END - if
 
 // Add description as navigation point
-addMenuDescription('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
 if (getRequestElement('userid') == 'all') {
        // Add points to all accounts
@@ -55,29 +54,34 @@ if (getRequestElement('userid') == 'all') {
                        __FILE__, __LINE__);
 
                // Process all entries
-               while ($content = merge_array($content, SQL_FETCHARRAY($result_main))) {
-                       // 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;
+               while ($row = SQL_FETCHARRAY($result_main)) {
+                       // Merge $row into $content
+                       $content = merge_array($content, $row);
+
+                       // 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['text']   = SQL_ESCAPE(postRequestElement('reason'));
-                       $content['points'] = bigintval(postRequestElement('points'));
+                       $content = array(
+                               '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('add-points', $content, bigintval($content['userid']));
-                       sendEmail(bigintval($content['userid']), getMessage('ADMIN_ADD_SUBJ'), $message);
+                       $message = loadEmailTemplate('member_add_points', $content, bigintval($content['userid']));
+                       sendEmail(bigintval($content['userid']), '{--ADMIN_ADD_POINTS_SUBJECT--}', $message);
                } // END - while
 
                // Free memory
                SQL_FREERESULT($result_main);
 
                // Output message
-               loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_POINTS_ADDED'));
+               displayMessage('{--ADMIN_ALL_POINTS_ADDED--}');
        } else {
                // Display form add points
                loadTemplate('admin_add_points_all');
@@ -88,36 +92,42 @@ if (getRequestElement('userid') == 'all') {
                // Selected user does exist
                $content = getUserDataArray();
 
-               if ((isFormSent()) && (isPostRequestElementSet(('points')))) {
+               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(
-                               'text'   => SQL_ESCAPE(postRequestElement('reason')),
-                               'points' => bigintval(postRequestElement('points'))
+                               'reason'  => SQL_ESCAPE(postRequestElement('reason')),
+                               'points'  => bigintval(postRequestElement('points')),
+                               'subject' => 'admin_add_single',
                        );
 
-                       // Message laden
-                       $message = loadEmailTemplate('add-points', $content, bigintval(getRequestElement('userid')));
+                       // Load message
+                       $message = loadEmailTemplate('member_add_points', $content, bigintval(getRequestElement('userid')));
+
+                       // Send the email out
+                       sendEmail(bigintval(getRequestElement('userid')), '{--ADMIN_ADD_POINTS_SUBJECT--}', $message);
 
-                       sendEmail(bigintval(getRequestElement('userid')), getMessage('ADMIN_ADD_SUBJ'), $message);
-                       loadTemplate('admin_settings_saved', false, getMessage('ADMIN_POINTS_ADDED'));
+                       // ... and display a message
+                       displayMessage('{--ADMIN_POINTS_ADDED--}');
                } else {
                        // Prepare content
-                       $content['user']   = "<a href=\"".generateEmailLink($content['email'], 'user_data')."\">".$content['surname']." ".$content['family']."</a>";
                        $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_saved', false, "<div class=\"admin_failed\">".sprintf(getMessage('ADMIN_MEMBER_404'), getRequestElement('userid'))."</div>");
+               // User not found
+               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]