Compilation time added, some compileCode() calles removed, ADMIN_WHAT_404 added
[mailer.git] / inc / libs / payout_functions.php
index a95ce7ce36606b8781384cf0b951157ed58b01c1..167142d23924d9464f9f30a0ae695c1cbf79d453 100644 (file)
@@ -56,23 +56,20 @@ ORDER BY
        `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
-                               $content['type'] = compileCode($content['type']);
-
                                // 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
 
-                       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");