API16:JModel/addIncludePath
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Add a directory where JModel should search for models. You may either pass a string or an array of directories.
Description:JModel/addIncludePath
Syntax
static 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
public static 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; }
[Edit See Also] SeeAlso:JModel/addIncludePath
Examples
<CodeExamplesForm />
