hello
i want make chang in this product [most active user]
the hack now just view in FORUMHOME page [index.php]
i want edit this to view in [nav bar] for view all pages ..
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<product productid="mostactive" title="Most Active User on Forumhome" description="This Hack shows the most active User on forumhome" version="1.0.0" active="1">
<codes>
</codes>
<templates>
</templates>
<plugins>
<plugin active="1">
<title>Most Active User on Forumhome</title>
<hookname>forumhome_complete</hookname>
<phpcode><![CDATA[$start = TIMENOW - TIMENOW % 86400;
$end = $start + 86400;
$maxposter = $db->query_first("SELECT user.username,user.userid,COUNT(*) AS total FROM " . TABLE_PREFIX . "user AS user," . TABLE_PREFIX . "post AS post WHERE user.userid=post.userid AND post.dateline BETWEEN $start AND $end GROUP BY post.userid ORDER BY total DESC LIMIT 1");]]></phpcode>
</plugin>
</plugins>
<phrases>
<phrasetype name="GLOBAL" fieldname="global">
<phrase name="most_active_user_in_forums"><![CDATA[Most active user : <a href="{1}">{2}</a> ]]></phrase>
</phrasetype>
</phrases>
<options>
</options>
</product>