JTable/addIncludePath: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m preparing for archive only |
||
| Line 66: | Line 66: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=addIncludePath | category=addIncludePath | ||
category=JTable | category=JTable | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 01:10, 25 March 2017
Description
Add a directory where JTable should search for table types. 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=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $path | null | A path to search. |
Returns
array An array with directory elements
Defined in
libraries/joomla/database/table.php
Importing
jimport( 'joomla.database.table' );
Source Body
function addIncludePath( $path=null )
{
static $paths;
if (!isset($paths)) {
$paths = array( dirname( __FILE__ ).DS.'table' );
}
// just force path to array
settype($path, 'array');
if (!empty( $path ) && !in_array( $path, $paths ))
{
// loop through the path directories
foreach ($path as $dir)
{
// no surrounding spaces allowed!
$dir = trim($dir);
// add to the top of the search dirs
// so that custom paths are searched before core paths
array_unshift($paths, $dir);
}
}
return $paths;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples