JForm/addFormPath: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m clean up |
||
| Line 2: | Line 2: | ||
Method to add a path to the list of form include paths. | Method to add a path to the list of form include paths. | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
| Line 54: | Line 52: | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
Revision as of 14:01, 24 March 2017
Description
Method to add a path to the list of form include paths.
<! removed transcluded page call, red link never existed >
Syntax
static addFormPath($new=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $new | null | $new A path or array of paths to add. |
Returns
array The list of paths that have been added.
Defined in
libraries/joomla/form/form.php
Importing
jimport( 'joomla.form.form' );
Source Body
public static function addFormPath($new = null)
{
static $paths;
if (!isset($paths)) {
$paths = array(dirname(__FILE__).DS.'forms');
}
// Force path to an array.
settype($new, 'array');
// Add the new paths to the list if not already there.
foreach ($new as $path) {
if (!in_array($path, $paths)) {
array_unshift($paths, trim($path));
}
}
return $paths;
}
<! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />