JForm/addFormPath: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Method to add a path to the list of form include paths.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JForm/addFormPath|Edit Desc... |
m removing red link to edit, no existant pages |
||
| Line 3: | Line 3: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 55: | Line 55: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Examples=== | ===Examples=== | ||
| Line 70: | Line 70: | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API16]] | |||
Revision as of 02:52, 14 May 2013
Description
Method to add a path to the list of form include paths.
[<! removed edit link to red link >]
<! 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 edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />