Back to Form class

Method addFilterPath

public static array
addFilterPath
(mixed $new = null)
Proxy for FormHelper::addFilterPath().
Parameters
  • mixed $new A path or array of paths to add.
Returns
  • array The list of paths that have been added.
Since
  • 4.0.0
-
  • \Joomla\CMS\Form\FormHelper::addFilterPath()
Class: Form
Project: Joomla

Method addFilterPath - Source code

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