X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fpayout_functions.php;h=17f7b9c0ab4d3a61f0f1a6b8948bc45cd76093e3;hb=498867478820a2eecb1da991a682ad31fae90c55;hp=5122ee6140aa9546e383f510e2d66544dcf57f0a;hpb=5ef6ed7373ae85e5635e39e2a0adf9496a8add05;p=mailer.git diff --git a/inc/libs/payout_functions.php b/inc/libs/payout_functions.php index 5122ee6140..17f7b9c0ab 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_saved', false, '
{--PAYOUT_NO_PAYOUT_TYPES--}
'); } - } - else - { + + // Free memory + SQL_FREERESULT($result); + } else { // Points is empty - OUTPUT_HTML("

".PAYOUT_NO_POINTS_ENTERED."

"); + loadTemplate('admin_settings_saved', false, '
{--PAYOUT_NO_POINTS_ENTERED--}
'); } } -// + +// [EOF] ?>