1
Hi,
Could someone fimiliar with the WebLinks module give me some tips on how to write a custom block that would show the top 10 web link subitters based on all the weblinks that has been submitted. The core XOOPS System module has something similar called 'Top Posters', but that one is based on user submitted comments. Here is the code snippet for that:
<table cellspacing="1" class="outer">
<{foreach item=user from=$block.users}>
<tr class="<{cycle values="even,odd"}>" valign="middle">
<td><{$user.rank}>td>
<td align="center">
<{if $user.avatar != ""}>
<img src="<{$user.avatar}>" alt="" width="32" /><br />
<{/if}>
<a href="<{$xoops_url}>/userinfo.php?uid=<{$user.id}>"><{$user.name}>a>
td>
<td align="center"><{$user.posts}>td>
tr>
<{/foreach}>
table>
Thanks in advance!!
Regards,
Abu