]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/doubler_functions.php
Task-create functions does now return a task id. We use that to help registering...
[mailer.git] / inc / libs / doubler_functions.php
index b6eddaf4432c2349b6baacf6ab2f3428feb7ccb3..8a455f6ea04a2ff609cc791fa2dd8ed7e390e0e1 100644 (file)
@@ -51,11 +51,11 @@ function generateDoublerTable ($userid = '0', $done = 'N', $ref = 'N', $sort = '
                // Load entries only from a single user
                $add = sprintf(" AND `userid`=%s", bigintval($userid));
                $mode = 'member'; $COLS = 4; $DT_MODE = 2;
-               $message = getMessage('DOUBLER_MEMBER_NO_ENTRIES_FOUND');
+               $message = '{--DOUBLER_MEMBER_NO_ENTRIES_FOUND--}';
        } else {
                // Guest mode!
                $mode = 'guest'; $COLS = 3; $DT_MODE = 3;
-               $message = getMessage('DOUBLER_GUEST_NO_ENTRIES_FOUND');
+               $message = '{--DOUBLER_GUEST_NO_ENTRIES_FOUND--}';
        }
 
        if (($done == 'Y') && ($sort == 'ASC')) {
@@ -91,17 +91,18 @@ LIMIT %s",
                $OUT = ''; $SW = 2;
                while ($content = SQL_FETCHARRAY($result)) {
                        // Rewrite userid/refid only if admin is in
+                       // @TODO Can't this be moved into EL?
                        if (isAdmin()) {
                                // Set links to admin area
-                               if ($content['userid'] > 0) { $content['userid'] = generateUserProfileLink($content['userid']); } else { $content['userid'] = '---'; }
-                               if ($content['refid'] > 0)  { $content['refid']  = generateUserProfileLink($content['refid']);  } else { $content['refid']  = '---'; }
+                               if (isValidUserId($content['userid'])) { $content['userid'] = generateUserProfileLink($content['userid']); } else { $content['userid'] = '---'; }
+                               if (isValidUserId($content['refid']))  { $content['refid']  = generateUserProfileLink($content['refid']);  } else { $content['refid']  = '---'; }
                        } // END - if
 
                        // Prepare data for the row template
                        $content = array(
                                'userid'   => $content['userid'],
                                'rid'      => $content['refid'],
-                               'points'   => translateComma($content['points']),
+                               'points'   => $content['points'],
                                'timemark' => generateDateTime($content['timemark'], $DT_MODE),
                                'sw'       => $SW,
                        );
@@ -109,25 +110,25 @@ LIMIT %s",
                        // Load template and switch color
                        $OUT .= loadTemplate($mode . '_doubler_list_rows', true, $content);
                        $SW = 3 - $SW;
-               }
+               } // END - while
 
                // Free memory
                SQL_FREERESULT($result);
        } else {
                // List no entries
-               $OUT = "<tr>
-  <td colspan=\"".$COLS."\" align=\"center\" class=\"doubler_big_row bottom\">
-    ".loadTemplate('admin_settings_saved', true, $message)."
+               $OUT = '<tr>
+  <td colspan="' . $COLS . '" align="center" class="doubler_big_row bottom">
+    ' . loadTemplate('admin_settings_saved', true, $message) . '
   </td>
-</tr>\n";
+</tr>';
        }
 
        // Return template
        return loadTemplate($mode . '_doubler_list', true, $OUT);
 }
 
-//
-function DOUBLER_GET_TOTAL_POINTS_LEFT() {
+// Get total points left in doubler pot
+function getDoublerTotalPointsLeft() {
        // Initialize variables
        $points = '0';
 
@@ -152,5 +153,6 @@ function DOUBLER_GET_TOTAL_POINTS_LEFT() {
        // Return value
        return $points;
 }
-//
+
+// [EOF]
 ?>