API15

JTable/ construct

From Joomla! Documentation

< API15:JTable
Revision as of 12:31, 25 March 2010 by Doxiki (talk | contribs)

The "API15" 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]

Object constructor to set table and key field

[Edit Descripton]

Template:Description:JTable/ construct

Syntax[edit]

__construct($table, $key, &$db)
Parameter Name Default Value Description
$table $table name of the table in the db schema relating to child class
$key $key name of the primary key field in the table
&$db $db object

Defined in[edit]

libraries/joomla/database/table.php

Importing[edit]

jimport( 'joomla.database.table' );

Source Body[edit]

function __construct( $table, $key, &$db )
{
        $this->_tbl             = $table;
        $this->_tbl_key = $key;
        $this->_db              =& $db;
}

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

Examples[edit]

<CodeExamplesForm />