API15:JTableSession/destroy
From Joomla! Documentation
Description
Destroys the pesisting session
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples