Back to Form class

Method addFieldPath

public static array
addFieldPath
(mixed $new = null)
Proxy for {@link FormHelper::addFieldPath()}.
Parameters
  • mixed $new A path or array of paths to add.
Returns
  • array The list of paths that have been added.
Since
  • 1.7.0
Class: Form
Project: Joomla

Method addFieldPath - Source code

/**
 * Proxy for {@link FormHelper::addFieldPath()}.
 *
 * @param   mixed  $new  A path or array of paths to add.
 *
 * @return  array  The list of paths that have been added.
 *
 * @since   1.7.0
 */
public static function addFieldPath($new = null)
{
    return FormHelper::addFieldPath($new);
}