JTableSession/destroy: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
===Syntax=== | ===Syntax=== | ||
| Line 51: | Line 51: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=destroy | category=destroy | ||
category=JTableSession | category=JTableSession | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
Latest revision as of 02:12, 25 March 2017
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