API16

JTableModule/ construct

From Joomla! Documentation

< API16:JTableModule

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]

Contructor.



Syntax[edit]

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

Defined in[edit]

libraries/joomla/database/table/module.php

Importing[edit]

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

Source Body[edit]

public function __construct(&$db)
{
        parent::__construct('#__modules', 'id', $db);

        $this->access = (int) JFactory::getConfig()->getValue('access');
}



Examples[edit]

Code Examples[edit]