API16:JTableSession/destroy
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Destroys the pesisting session
Description:JTableSession/destroy
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; }
[Edit See Also] SeeAlso:JTableSession/destroy
Examples
<CodeExamplesForm />
