Quote:
Originally Posted by sv1cec
Me clicked 'Install'.
Now, all I have to do is to find a way to integrate it into my AdminCP. This vB software can always keep you busy.
Thanks for a lovely hack.
Rgds
|
If you really need to do that (I was aiming at a no file no template modification hack, I am tired of rehacking everything every month
)
For a link in you admincp, it will be below "View permissions" in the "Forums & Moderators" box
In admincp/index.php
find:
PHP Code:
construct_nav_group("$vbphrase[forums] & $vbphrase[moderators]");
add ABOVE:
PHP Code:
construct_nav_option('Moderators management', '../modmanagement.php');
For a link in your footer template, it will appear just next to your "admincp" link
in your 'footer' template
find:
PHP Code:
<if condition="$show['admincplink']"><a href="$admincpdir/index.php?$session[sessionurl]">$vbphrase[admin]</a> -</if>
REPLACE it with:
PHP Code:
<if condition="$show['admincplink']"><a href="$admincpdir/index.php?$session[sessionurl]">$vbphrase[admin]</a> - <a href="modmanagement.php">Moderators Management</a> -</if>