X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fpayout_functions.php;h=9714f018f383603602aa7cef50346aeec5f633d7;hb=496a9a8159ba42133179e0535afbd5622c3b39d8;hp=bc6036e6cfa261fda4576808f6016d42bcca83e5;hpb=d0ab0382dd73638f0bc13a1a3d6f117ec11a203e;p=mailer.git diff --git a/inc/libs/payout_functions.php b/inc/libs/payout_functions.php index bc6036e6cf..9714f018f3 100644 --- a/inc/libs/payout_functions.php +++ b/inc/libs/payout_functions.php @@ -1,7 +1,7 @@ 0) - { +if (!defined('__SECURITY')) { + die(); +} // END - if + +// Outputs all payout methods the user has +function outputPayoutList ($points) { + // Enougth points? + if ($points > 0) { // Pay this out! - $result = SQL_QUERY_ESC("SELECT id, type, rate, min_points -FROM "._MYSQL_PREFIX."_payout_types -WHERE %s >= min_points -ORDER BY type", array($POINTS), __FILE__, __LINE__); - if (SQL_NUMROWS($result) > 0) - { - OUTPUT_HTML ("
-
".PAYOUT_NOW.":

-
"); - } - else - { + // Load row template + $OUT .= loadTemplate('member_payout_li', true, $content); + } // END - if + } // END - while + + // Load main template + loadTemplate('member_payout_list', true, $OUT); + } else { // No payout types setup so far - OUTPUT_HTML ("

".PAYOUT_NO_PAYOUT_TYPES."

"); + loadTemplate('admin_settings_unsaved', false, '{--MEMBER_PAYOUT_SETUP_INCOMPLETE--}'); } - } - else - { + + // Free memory + SQL_FREERESULT($result); + } else { // Points is empty - OUTPUT_HTML ("

".PAYOUT_NO_POINTS_ENTERED."

"); + loadTemplate('admin_settings_unsaved', false, '{--MEMBER_PAYOUT_NO_POINTS_ENTERED--}'); } } -// + +// "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] ?>