Tribiq CMS

Choose your language

8.2 Admin Login Link

Adding an Admin Link to your website provides easy access to Admins who wish to login with a mouse click, rather than typing “/admin” into the address bar.

The snippet provided below will only show the link when an Admin has previously logged in (i.e. An Admin cookie is found on the machine) or if the user is currently logged into Admin Mode.

The link also provides a return path for the Admin.

<?php
if ( $_COOKIE["COOKIE_LAST_ADMIN_USER"] || !$_SESSION['admin_username'] )
{ 
echo "<a href=\"admin/?" . $_SERVER['QUERY_STRING'] . "\" title=\"Admin Mode\">Admin</a>";         }        
?>


 

Top of Page