I wrote a small authorization plugin (class) for Joomla 2.5 with onUserAuthenticate event help. It looks like:
class plgauthenticationAuth extends JPlugin{
public function plgauthenticationAuth($subject, $config){
parent::__construct($subject,$config);
}
public function onUserAuthenticate($credentials, $options, $response){
//my code
How from here i can set redirect to custom url?