X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=2237a908124a554ae91244a2bdcfecfb291ffb36;hb=8f37a3b2708cfc4b4ef266f4be813a84511daa8f;hp=c6a4dcde2c2806798b4565c670286b77b8017540;hpb=508228c85fba8448d00865b1639cb8cd7a69e457;p=mailer.git diff --git a/inc/modules/admin/what-chk_regs.php b/inc/modules/admin/what-chk_regs.php index c6a4dcde2c..2237a90812 100644 --- a/inc/modules/admin/what-chk_regs.php +++ b/inc/modules/admin/what-chk_regs.php @@ -1,7 +1,7 @@ 0) { +if (!SQL_HASZERONUMS($result)) { // We have some (new?) registrations! - $OUT = ""; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { - // Add link to refid - if ($content['refid'] > 0) $content['refid'] = ADMIN_USER_PROFILE_LINK($content['refid']); - // Prepare array for the row template - // @TODO Rewritings: sname->surname,fname->family,ip->REMOTE_ADDR,ref->refid,hash->user_hash in template $content = array( - 'sw' => $SW, - 'gender' => TRANSLATE_GENDER($content['gender']), - 'sname' => $content['surname'], - 'fname' => $content['family'], - 'email' => "".$content['email']."", - 'ip' => $content['REMOTE_ADDR'], - 'ref' => $content['refid'], - 'hash' => $content['user_hash'], - 'link' => ADMIN_USER_PROFILE_LINK($content['userid']), + 'gender' => $content['gender'], + 'surname' => $content['surname'], + 'family' => $content['family'], + 'email' => '' . $content['email'] . '', + 'remote_addr' => $content['REMOTE_ADDR'], + 'refid' => $content['refid'], + 'user_hash' => $content['user_hash'], + 'userid' => $content['userid'], ); // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content); - $SW = 3 - $SW; - } - - // Remember rows - // @TODO Rewrite this constant - define('__REG_ROWS', $OUT); + $OUT .= loadTemplate('admin_list_chk_reg_row', true, $content); + } // END - while // Load main template - LOAD_TEMPLATE("admin_reg"); + loadTemplate('admin_list_chk_reg', false, $OUT); } else { // No registrations left - or all has confirmed their email address... :-) - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL')); + displayMessage('{--ADMIN_ALL_CONFIRMED_EMAIL--}'); } // Free memory SQL_FREERESULT($result); -// +// [EOF] ?>