Back to FormField class

Method postProcess

public mixed
postProcess
(mixed $value, mixed $group = null, \Joomla\Registry\Registry $input = null)
Method to post-process a field value.
Parameters
  • mixed $value The optional value to use as the default for the field.
  • string $group The optional dot-separated form group path on which to find the field.
  • \Joomla\Registry\Registry $input An optional Registry object with the entire data set to filter against the entire form.
Returns
  • mixed The processed value.
Since
  • 4.0.0
Class: FormField
Project: Joomla

Method postProcess - Source code

/**
 * Method to post-process a field value.
 *
 * @param   mixed     $value  The optional value to use as the default for the field.
 * @param   string    $group  The optional dot-separated form group path on which to find the field.
 * @param   Registry  $input  An optional Registry object with the entire data set to filter
 *                            against the entire form.
 *
 * @return  mixed   The processed value.
 *
 * @since   4.0.0
 */
public function postProcess($value, $group = null, Registry $input = null)
{
    return $value;
}