API16

Difference between revisions of "JTableSession/ construct"

From Joomla! Documentation

< API16:JTableSession
(New page: ===Description=== Constructor <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span>...)
 
Line 17: Line 17:
 
!Description
 
!Description
 
|-
 
|-
|  
+
| &$db
 
|  
 
|  
 
|  A database connector object  
 
|  A database connector object  

Revision as of 05:06, 30 March 2010

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Constructor

[Edit Descripton]

Template:Description:JTableSession/ construct

Syntax[edit]

__construct(&$db)
Parameter Name Default Value Description
&$db A database connector object

Defined in[edit]

libraries/joomla/database/table/session.php

Importing[edit]

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

Source Body[edit]

function __construct(&$db)
{
        parent::__construct('#__session', 'session_id', $db);

        $this->guest    = 1;
        $this->username = '';
}

[Edit See Also] Template:SeeAlso:JTableSession/ construct

Examples[edit]

<CodeExamplesForm />