Back to RouterLegacy class

Method preprocess

public array
preprocess
(mixed $query)
Generic preprocess function for missing or legacy component router
Parameters
  • array $query An associative array of URL arguments
Returns
  • array The URL arguments to use to assemble the subsequent URL.
Since
  • 3.3
Class: RouterLegacy
Project: Joomla

Method preprocess - Source code

/**
 * Generic preprocess function for missing or legacy component router
 *
 * @param   array  $query  An associative array of URL arguments
 *
 * @return  array  The URL arguments to use to assemble the subsequent URL.
 *
 * @since   3.3
 */
public function preprocess($query)
{
    return $query;
}