Admin & Mod CP links at the top of the page

megalocker

New Member
This is a super-simple template mod to add Admin CP and Mod CP links to the top right corner of the page. The links are only shown if the user has the appropriate mod or admin permissions.


To install, simply paste the following code at the bottom of your footer template.


<if condition="$show['admincplink'] || $show['modcplink']">
<div style="position:absolute;top:2px;right:8px;font-size:x-small;">
<if condition="$show['admincplink']">
<a href="$admincpdir/index.php$session[sessionurl_q]">$vbphrase[admin]</a>
</if>
<if condition="$show['modcplink']">
<a href="$modcpdir/index.php$session[sessionurl_q]">$vbphrase[mod]</a>
</if>
</div>
</if>
 
Top