API16:JModel/addTablePath
From Joomla! Documentation
Description
Adds to the stack of model table paths in LIFO order.
Syntax
static addTablePath($path)
| Parameter Name | Default Value | Description |
|---|---|---|
| $path | The directory (-ies) to add. |
Returns
void
Defined in
libraries/joomla/application/component/model.php
Importing
jimport( 'joomla.application.component.model' );
Source Body
public static function addTablePath($path)
{
jimport('joomla.database.table');
JTable::addIncludePath($path);
}
Examples
Code Examples