Hi,
I have a simple script that lists the users with the highest reputation. I want to add the avatars of the top three results. I figure the best way was to use a template conditional like <if condition="count > 3">no avatar</else>avatar</if>.
So can I accomplish this in this script:
PHP Code:
<?php
/* --------------------------------------------------
[vB 3.6.8] Module CMPS Add Top Posters 1.3
Zachariah - http://www.szone.us
Tested on:
- vBulletin 3.6.8
- vBadvanced CMPS v3.0 RC2
-------------------------------------------------- */
$count = $mod_options['portal_topposter_count'];
$exclude_gid = $mod_options['portal_topposter_exgid'];
$exclude_uid = $mod_options['portal_topposter_exuid'];
// ### TOP STATS ############## TOP POSTERS ##########################
$top_stats = array();
$top_posters = $db->query("
SELECT userid, usergroupid, username, lastpostid, reputation, avatarrevision
FROM " . TABLE_PREFIX . "user
WHERE reputation != 0
" . iif(!empty($exclude_gid), "AND usergroupid NOT IN ($exclude_gid)") . "
" . iif(!empty($exclude_uid), "AND userid NOT IN ($exclude_uid)") . "
ORDER BY reputation DESC
LIMIT $count
");
while($top_poster = $db->fetch_array($top_posters)){
eval('$top_stats[\'adv_portal_topposters_bit\'] .= "' . fetch_template('adv_portal_topposters_bit') . '";');
}
$db->free_result($top_posters);
eval('$home[$mods[\'modid\']][\'content\'] = "' . fetch_template('adv_portal_topposters') . '";');
unset($top_poster,$top_posters,$top_stats,$count,$exclude_gid, $exclude_uid, $mod_options);
Cheers, and thanks in advance