Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JTableSession
+ Graphe d'héritage de JTableSession:
+ Graphe de collaboration de JTableSession:

Liste de tous les membres

Fonctions membres publiques

 __construct (JDatabaseDriver $db)
 insert ($sessionId, $clientId)
 update ($updateNulls=false)
 destroy ($userId, $clientIds=array())
 purge ($maxLifetime=1440)
 exists ($userid)
 delete ($oid=null)
- Fonctions membres publiques inherited from JTable
 __construct ($table, $key, JDatabaseDriver $db)
 attachObserver (JObserverInterface $observer)
 getObserverOfClass ($observerClass)
 getFields ()
 appendPrimaryKeys ($query, $pk=null)
 getTableName ()
 getKeyName ($multiple=false)
 getDbo ()
 setDBO (JDatabaseDriver $db)
 setRules ($input)
 getRules ()
 reset ()
 bind ($src, $ignore=array())
 load ($keys=null, $reset=true)
 check ()
 store ($updateNulls=false)
 save ($src, $orderingFilter= '', $ignore= '')
 checkOut ($userId, $pk=null)
 checkIn ($pk=null)
 hasPrimaryKey ()
 hit ($pk=null)
 isCheckedOut ($with=0, $against=null)
 getNextOrder ($where= '')
 getPrimaryKey (array $keys=array())
 reorder ($where= '')
 move ($delta, $where= '')
 publish ($pks=null, $state=1, $userId=0)
- Fonctions membres publiques inherited from JObject
 __construct ($properties=null)
 __toString ()
 def ($property, $default=null)
 get ($property, $default=null)
 getProperties ($public=true)
 getError ($i=null, $toString=true)
 getErrors ()
 set ($property, $value=null)
 setProperties ($properties)
 setError ($error)

Additional Inherited Members

- Fonctions membres publiques statiques inherited from JTable
static getInstance ($type, $prefix= 'JTable', $config=array())
static addIncludePath ($path=null)
- Fonctions membres protégées inherited from JTable
 _getAssetName ()
 _getAssetTitle ()
 _getAssetParentId (JTable $table=null, $id=null)
 _lock ()
 _unlock ()
- Attributs protégés inherited from JTable
 $_tbl = ''
 $_tbl_key = ''
 $_tbl_keys = array()
 $_db
 $_trackAssets = false
 $_rules
 $_locked = false
 $_autoincrement = true
 $_observers
- Attributs protégés inherited from JObject
 $_errors = array()

Description détaillée

Définition à la ligne 20 du fichier session.php.


Documentation des constructeurs et destructeur

JTableSession::__construct ( JDatabaseDriver  $db)

Constructor

Paramètres:
JDatabaseDriver$dbDatabase driver object.
Depuis:
11.1
Obsolète:
13.3 Use SQL queries to interact with the session table.

Définition à la ligne 30 du fichier session.php.

Références JLog\add(), et JLog\WARNING.

{
JLog::add('JTableSession is deprecated. Use SQL queries directly to interact with the session table.', JLog::WARNING, 'deprecated');
parent::__construct('#__session', 'session_id', $db);
$this->guest = 1;
$this->username = '';
}

+ Voici le graphe d'appel pour cette fonction :


Documentation des fonctions membres

JTableSession::delete (   $oid = null)

Overloaded delete method

We must override it because of the non-integer primary key

Paramètres:
integer$oidThe object id (optional).
Renvoie:
mixed True if successful otherwise an error message
Depuis:
11.1
Obsolète:
13.3 Use SQL queries to interact with the session table.

Réimplémentée à partir de JTable.

Définition à la ligne 189 du fichier session.php.

{
if ($oid)
{
$this->$k = $oid;
}
$query = $this->_db->getQuery(true)
->delete($this->_db->quoteName($this->_tbl))
->where($this->_db->quoteName($this->_tbl_key) . ' = ' . $this->_db->quote($this->$k));
$this->_db->setQuery($query);
$this->_db->execute();
return true;
}
JTableSession::destroy (   $userId,
  $clientIds = array() 
)

Destroys the pre-existing session

Paramètres:
integer$userIdIdentifier of the user for this session.
array$clientIdsArray of client ids for which session(s) will be destroyed
Renvoie:
boolean True on success.
Depuis:
11.1
Obsolète:
13.3 Use SQL queries to interact with the session table.

Définition à la ligne 108 du fichier session.php.

{
$clientIds = implode(',', $clientIds);
$query = $this->_db->getQuery(true)
->delete($this->_db->quoteName($this->_tbl))
->where($this->_db->quoteName('userid') . ' = ' . $this->_db->quote($userId))
->where($this->_db->quoteName('client_id') . ' IN (' . $clientIds . ')');
$this->_db->setQuery($query);
if (!$this->_db->execute())
{
$this->setError($this->_db->stderr());
return false;
}
return true;
}
JTableSession::exists (   $userid)

Find out if a user has a one or more active sessions

Paramètres:
integer$useridThe identifier of the user
Renvoie:
boolean True if a session for this user exists
Depuis:
11.1
Obsolète:
13.3 Use SQL queries to interact with the session table.

Définition à la ligne 159 du fichier session.php.

{
$query = $this->_db->getQuery(true)
->select('COUNT(userid)')
->from($this->_db->quoteName($this->_tbl))
->where($this->_db->quoteName('userid') . ' = ' . $this->_db->quote($userid));
$this->_db->setQuery($query);
if (!$result = $this->_db->loadResult())
{
$this->setError($this->_db->stderr());
return false;
}
return (boolean) $result;
}
JTableSession::insert (   $sessionId,
  $clientId 
)

Insert a session

Paramètres:
string$sessionIdThe session id
integer$clientIdThe id of the client application
Renvoie:
boolean True on success
Depuis:
11.1
Obsolète:
13.3 Use SQL queries to interact with the session table.

Définition à la ligne 50 du fichier session.php.

Références JText\sprintf().

{
$this->session_id = $sessionId;
$this->client_id = $clientId;
$this->time = time();
$ret = $this->_db->insertObject($this->_tbl, $this, 'session_id');
if (!$ret)
{
$this->setError(JText::sprintf('JLIB_DATABASE_ERROR_STORE_FAILED', strtolower(get_class($this)), $this->_db->stderr()));
return false;
}
else
{
return true;
}
}

+ Voici le graphe d'appel pour cette fonction :

JTableSession::purge (   $maxLifetime = 1440)

Purge old sessions

Paramètres:
integer$maxLifetimeSession age in seconds
Renvoie:
mixed Resource on success, null on fail
Depuis:
11.1
Obsolète:
13.3 Use SQL queries to interact with the session table.

Définition à la ligne 138 du fichier session.php.

{
$past = time() - $maxLifetime;
$query = $this->_db->getQuery(true)
->delete($this->_db->quoteName($this->_tbl))
->where($this->_db->quoteName('time') . ' < ' . (int) $past);
$this->_db->setQuery($query);
return $this->_db->execute();
}
JTableSession::update (   $updateNulls = false)

Updates the session

Paramètres:
boolean$updateNullsTrue to update fields even if they are null.
Renvoie:
boolean True on success.
Depuis:
11.1
Obsolète:
13.3 Use SQL queries to interact with the session table.

Définition à la ligne 80 du fichier session.php.

Références JText\sprintf().

{
$this->time = time();
$ret = $this->_db->updateObject($this->_tbl, $this, 'session_id', $updateNulls);
if (!$ret)
{
$this->setError(JText::sprintf('JLIB_DATABASE_ERROR_STORE_FAILED', strtolower(get_class($this)), $this->_db->stderr()));
return false;
}
else
{
return true;
}
}

+ Voici le graphe d'appel pour cette fonction :


La documentation de cette classe a été générée à partir du fichier suivant :