More HTML code swapped into templates (#68 again)
[mailer.git] / inc / libs / payout_functions.php
index a95ce7ce36606b8781384cf0b951157ed58b01c1..77d7121a2e6e03ca8b02d5d9b7c9c0737c01c0d0 100644 (file)
@@ -56,9 +56,6 @@ ORDER BY
        `type` ASC",
                        array($points), __FUNCTION__, __LINE__);
                if (SQL_NUMROWS($result) > 0) {
        `type` ASC",
                        array($points), __FUNCTION__, __LINE__);
                if (SQL_NUMROWS($result) > 0) {
-                       outputHtml("<br /><div align=\"center\">
-<div align=\"center\"><strong>{--PAYOUT_NOW--}:</strong></div><br />
-<ul>");
                        // Now let's check
                        while ($content = SQL_FETCHARRAY($result)) {
                                // Compile the type
                        // Now let's check
                        while ($content = SQL_FETCHARRAY($result)) {
                                // Compile the type
@@ -66,13 +63,16 @@ ORDER BY
 
                                // Are these points enougth?
                                if ($points >= $content['min_points']) {
 
                                // Are these points enougth?
                                if ($points >= $content['min_points']) {
-                                       // Ok we found one
-                                       $P = translateComma($points * $content['rate'] - 0.5);
-                                       outputHtml("<li>{--PAYOUT_IN--}: <strong><a href=\"{?URL?}/modules.php?module=login&amp;what=payout&amp;payout=".$content['id']."\">".$content['type']." ({--PAYOUT_MAX--} ".$P." ".$content['type'].")</a></strong></li>");
+                                       // Prepare content for template
+                                       $content['points'] = translateComma($points * $content['rate'] - 0.5);
+
+                                       // Load row template
+                                       $OUT .= loadTemplate('member_payout_li', true, $content);
                                } // END - if
                        } // END - while
 
                                } // END - if
                        } // END - while
 
-                       outputHtml("</ul></div>");
+                       // Load main template
+                       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");
                } else {
                        // No payout types setup so far
                        loadTemplate('admin_settings_saved', false, "<div class=\"guest_failed\">{--PAYOUT_NO_PAYOUT_TYPES--}</div");