API16

API16:JTableSession/destroy

From Joomla! Documentation

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;
}



Examples

Code Examples