More rewrites to make use of (cached) wrapper functions
[mailer.git] / inc / modules / admin / what-config_register.php
index 4cba9e31e0f586254a849fad3a5f506c91b5a801..0d65e88d6fb481cb28e3dfab614f1c61413a358c 100644 (file)
@@ -66,26 +66,16 @@ if (isFormSent()) {
 
 // List all register values
 $result = SQL_QUERY("SELECT `id`, `field_name`, `field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC", __FILE__, __LINE__);
-$OUT = ''; $SW = 2;
+$OUT = '';
 while ($content = SQL_FETCHARRAY($result)) {
        // Get language string
-       $content['field_name'] =  getMessage(strtoupper($content['field_name']));
+       $content['field_name'] = '{--' . strtoupper($content['field_name']) . '--}';
 
        // Add more data
-       $content['sw']        = $SW;
-       $content['selection'] = addSelectionBox('yn', $content['field_required'], "sel[".$content['id']."]");
+       $content['selection'] = addSelectionBox('yn', $content['field_required'], 'sel[' . $content['id'] . ']');
 
        // @TODO Move this HTML code into a template
-       $OUT .= "<tr>
-       <td align=\"center\" class=\"switch_sw".$content['sw']." bottom right\">".$content['id']."</td>
-       <td class=\"switch_sw".$content['sw']." bottom right\">".$content['field_name']."</td>
-       <td align=\"center\" class=\"switch_sw".$content['sw']." bottom right\">
-               ".$content['selection']."
-       </td>
-</tr>\n";
-
-       // Switch color
-       $SW = 3 - $SW;
+       $OUT .= loadTemplate('admin_config_register_row', true, $content);
 } // END - while
 
 // Free memory