我需要创建一个在 Joomla 中注销的按钮,我的意思是,用户通常会进入会话,但必须按下我创建的按钮才能关闭此会话,我知道如何检查是否有任何用户进入了会话,我知道如何要显示按钮,我不知道如何使该按钮关闭实际的用户会话(注销)。
这是我的基本代码:
<?php $user =& JFactory::getUser(); ?>
<?php if ( ($user->id)==0 ) : ?>
//***code for not opened session***
<?php else : ?>
<form id="form1" name="form1" method="post" action="">
<input type="button" name="button" id="button" value="Close Session" />
</form>
<?php endif ?>
如何使该按钮关闭 joomla 2.5 会话,我检查了 API 页面,但没有找到。