]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/payout_functions.php
More rewrites to make use of (cached) wrapper functions
[mailer.git] / inc / libs / payout_functions.php
index 77d7121a2e6e03ca8b02d5d9b7c9c0737c01c0d0..492eeda10ee4b7d5d98e80d69d606c83e8f27ad4 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/19/2003 *
- * ===============                              Last change: 08/12/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/19/2003 *
+ * ===================                          Last change: 08/12/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-points.php                                  *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -55,12 +56,9 @@ WHERE
 ORDER BY
        `type` ASC",
                        array($points), __FUNCTION__, __LINE__);
-               if (SQL_NUMROWS($result) > 0) {
+               if (!SQL_HASZERONUMS($result)) {
                        // Now let's check
                        while ($content = SQL_FETCHARRAY($result)) {
-                               // Compile the type
-                               $content['type'] = compileCode($content['type']);
-
                                // Are these points enougth?
                                if ($points >= $content['min_points']) {
                                        // Prepare content for template
@@ -75,16 +73,24 @@ ORDER BY
                        loadTemplate('member_payout_list', true, $OUT);
                } else {
                        // No payout types setup so far
-                       loadTemplate('admin_settings_saved', false, "<div class=\"guest_failed\">{--PAYOUT_NO_PAYOUT_TYPES--}</div");
+                       loadTemplate('admin_settings_saved', false, '<div class="guest_failed">{--MEMBER_PAYOUT_SETUP_INCOMPLETE--}</div>');
                }
 
                // Free memory
                SQL_FREERESULT($result);
        } else {
                // Points is empty
-               loadTemplate('admin_settings_saved', false, "<div class=\"guest_failed\">{--PAYOUT_NO_POINTS_ENTERED--}</div");
+               loadTemplate('admin_settings_saved', false, '<div class="guest_failed">{--MEMBER_PAYOUT_NO_POINTS_ENTERED--}</div>');
        }
 }
 
+// "Translates" the payout status into a human-readable message
+function translatePayoutStatus ($status) {
+       // Try to get a message from given status
+       $message = '{--PAYOUT_STATUS_' . strtoupper($status) . '--}';
+
+       // Return it
+}
+
 // [EOF]
 ?>