API16

JForm/addFormPath

From Joomla! Documentation

< API16:JForm
Revision as of 21:52, 13 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

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[edit]

static addFormPath($new=null)
Parameter Name Default Value Description
$new null $new A path or array of paths to add.

Returns[edit]

array The list of paths that have been added.

Defined in[edit]

libraries/joomla/form/form.php

Importing[edit]

jimport( 'joomla.form.form' );

Source Body[edit]

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[edit]

<CodeExamplesForm />