JTableSession/destroy
From Joomla! Documentation
< API16:JTableSession
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description
Destroys the pesisting session
Syntax
destroy($userId, $clientIds=array())
Parameter Name | Default Value | Description |
---|---|---|
$userId | ||
$clientIds | array() |
Defined in
libraries/joomla/database/table/session.php
Importing
jimport( 'joomla.database.table.session' );
Source Body
function destroy($userId, $clientIds = array())
{
$clientIds = implode(',', $clientIds);
$query = 'DELETE FROM #__session'
. ' WHERE userid = '. $this->_db->Quote($userId)
. ' AND client_id IN ('.$clientIds.')'
;
$this->_db->setQuery($query);
if (!$this->_db->query()) {
$this->setError($this->_db->stderr());
return false;
}
return true;
}