API16

JTableUsergroup/ construct

From Joomla! Documentation

< API16:JTableUsergroup

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



Syntax[edit]

__construct(&$db)
Parameter Name Default Value Description
&$db Database object

Returns[edit]

void

Defined in[edit]

libraries/joomla/database/table/usergroup.php

Importing[edit]

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

Source Body[edit]

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



Examples[edit]

Code Examples[edit]