API17

JTableSession: Difference between revisions

From Joomla! Documentation

Doxiki2 (talk | contribs)
Bulk upload by Doxiki2
 
m preparing for archive only
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
<span class="editsection" style="font-size:76%;">
=={{JVer|11.1}} JTableSession==
<nowiki>[</nowiki>[[Description:JTableSession|Edit Descripton]]<nowiki>]</nowiki>
===Description===
</span>
 
{{Description:JTableSession}}
 
===Defined in===
libraries/joomla/database/table/session.php
===Subpackage===
[[Subpackage Database/11.1|Database]]
===Extends===
[[JTable/11.1|JTable]]
===Extended by===
===Methods===
===Methods===
{| class="wikitable sortable"
{| class="wikitable sortable"
|-
|-
!Visibility
!Method name
!Method name
!Description
!Description
|-
|-
|[[JTableSession::__construct/11.1|__construct]]
|public
|[[API17:JTableSession::__construct|__construct]]
|Constructor.  
|Constructor.  
|-
|-
|[[JTableSession::delete/11.1|delete]]
|public
|[[API17:JTableSession::delete|delete]]
|Overloaded delete method.  
|Overloaded delete method.  
|-
|-
|[[JTableSession::destroy/11.1|destroy]]
|public
|[[API17:JTableSession::destroy|destroy]]
|Destroys the pesisting session.  
|Destroys the pesisting session.  
|-
|-
|[[JTableSession::exists/11.1|exists]]
|public
|[[API17:JTableSession::exists|exists]]
|Find out if a user has a one or more active sessions.  
|Find out if a user has a one or more active sessions.  
|-
|-
|[[JTableSession::insert/11.1|insert]]
|public
|[[API17:JTableSession::insert|insert]]
|
|
|-
|-
|[[JTableSession::purge/11.1|purge]]
|public
|[[API17:JTableSession::purge|purge]]
|Purge old sessions.  
|Purge old sessions.  
|-
|-
|[[JTableSession::update/11.1|update]]
|public
|[[API17:JTableSession::update|update]]
|
|
|-
|-
|}
|}
* '''Defined in''' libraries/joomla/database/table/session.php
* '''Extends''' [[API17:JTable|JTable]]
===Importing===
===Importing===
<source lang="php">jimport( 'joomla.database.table.session' );</source>
<source lang="php">jimport( 'joomla.database.table.session' );</source>
===See also===
===See also===
* [[JTableSession|Other versions of this class]]
* {{JVer|11.1}} '''JTableSession source code''' on [[jplatform:database/table/session.php|BitBucket]]
{{SeeAlso:JTableSession}}
* {{JVer|11.1}} Subpackage [[API17:Subpackage Database|Database]]
<span class="editsection" style="font-size:76%;">
* [[API17:JTableSession|Other versions of JTableSession]]
<nowiki>[</nowiki>[[SeeAlso:JTableSession|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
===Examples===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JTableSession
category=JTableSession
category=CodeExample
namespace=CodeExample
category=ClassExample
category=ClassExample
include=*
include=*
namespace=CodeExample
format= ,,,
format= ,,,
</dpl>
</dpl>
<noinclude>[[Category:Platform]][[Category:Platform 11.1]][[Category:JTableSession]]</noinclude>
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 03:50, 25 March 2017

Joomla 11.1 JTableSession

Description

Methods

Visibility Method name Description
public __construct Constructor.
public delete Overloaded delete method.
public destroy Destroys the pesisting session.
public exists Find out if a user has a one or more active sessions.
public insert
public purge Purge old sessions.
public update
  • Defined in libraries/joomla/database/table/session.php
  • Extends JTable

Importing

jimport( 'joomla.database.table.session' );

See also


User contributed notes

Code Examples