怎么样使用Joomla判断用户是否登录?

怎么样使用Joomla判断用户是否登录?

本文实例讲述了Joomla简单判断用户是否登录的方法。分享给大家供大家参考,具体如下:

<?php
if (isset($_SESSION['auth']["username"]))
{ echo "Welcome <a href='index.php?option=com_user&view=user&task=edit'>" . $_SESSION['auth']["username"] . "</a>!"; }
else
{ echo "<a href='index.php?option=com_user&view=login'>Log in</a>"; }
?>

希望本文所述对大家基于joomla程序设计有所帮助。