0)) { // Points $content['points'] = bigintval(postRequestElement('points')); // Select all users $result_main = SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC", __FILE__, __LINE__); // Process all entries while ($row = SQL_FETCHARRAY($result_main)) { // Merge $row into $content $content = merge_array($content, $row); // Ok, add points and send an email to him... addPointsDirectly('admin_add_all', $content['userid'], bigintval(postRequestElement('points'))); // Prepare content $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('member_add_points', $content, bigintval($content['userid'])); sendEmail(bigintval($content['userid']), '{--ADMIN_ADD_SUBJECT--}', $message); } // END - while // Free memory SQL_FREERESULT($result_main); // Output message displayMessage('{--ADMIN_ALL_POINTS_ADDED--}'); } else { // Display form add points loadTemplate('admin_add_points_all'); } } 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 = getUserDataArray(); if ((isFormSent()) && (isPostRequestElementSet('points'))) { // Add points and send an email to him... addPointsDirectly('admin_add_single', bigintval(getRequestElement('userid')), bigintval(postRequestElement('points'))); // Prepare content $content = array( 'reason' => SQL_ESCAPE(postRequestElement('reason')), 'points' => bigintval(postRequestElement('points')), 'subject' => 'admin_add_single', ); // Load message $message = loadEmailTemplate('member_add_points', $content, bigintval(getRequestElement('userid'))); // Send the email out sendEmail(bigintval(getRequestElement('userid')), '{--ADMIN_ADD_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); } } else { // User not found loadTemplate('admin_settings_unsaved', false, '{%message,ADMIN_MEMBER_404=' . bigintval(getRequestElement('userid')) . '%}'); } } else { // Output selection form with all confirmed user accounts listed addMemberSelectionBox(0, true); } // [EOF] ?>