API16

JTableContent/ construct

From Joomla! Documentation

< API16:JTableContent

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.

Syntax[edit]

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

Defined in[edit]

libraries/joomla/database/table/content.php

Importing[edit]

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

Source Body[edit]

function __construct(&$db)
{
        parent::__construct('#__content', 'id', $db);
}



Examples[edit]

Code Examples[edit]