API15:JModel/addTablePath
From Joomla! Documentation
Description
Adds to the stack of model table paths in LIFO order.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
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
function addTablePath($path)
{
jimport('joomla.database.table');
JTable::addIncludePath($path);
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples