]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/payout_functions.php
Naming convention applied for ext-payout
[mailer.git] / inc / libs / payout_functions.php
index 17f7b9c0ab4d3a61f0f1a6b8948bc45cd76093e3..a33429bf5dfed1e04191e1f62aedf494c6d61089 100644 (file)
@@ -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 *
@@ -72,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 = getMessage('PAYOUT_STATUS_' . strtoupper($status) . '');
+
+       // Return it
+}
+
 // [EOF]
 ?>