API15:JModel/addIncludePath
From Joomla! Documentation
Description
Add a directory where JModel should search for models. You may either pass a string or an array of directories.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
addIncludePath($path='')
| Parameter Name | Default Value | Description |
|---|---|---|
| $path | A path to search. |
Returns
array An array with directory elements
Defined in
libraries/joomla/application/component/model.php
Importing
jimport( 'joomla.application.component.model' );
Source Body
function addIncludePath( $path='' )
{
static $paths;
if (!isset($paths)) {
$paths = array();
}
if (!empty( $path ) && !in_array( $path, $paths )) {
jimport('joomla.filesystem.path');
array_unshift($paths, JPath::clean( $path ));
}
return $paths;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples