JTableMenu/ construct
From Joomla! Documentation
< API16:JTableMenu
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 | A database connector object |
Defined in[edit]
libraries/joomla/database/table/menu.php
Importing[edit]
jimport( 'joomla.database.table.menu' );
Source Body[edit]
public function __construct(&$db)
{
parent::__construct('#__menu', 'id', $db);
// Set the default access level.
$this->access = (int) JFactory::getConfig()->getValue('access');
}
Examples[edit]
Code Examples[edit]