Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 1 down vote accepted

try to this

$mainframe = JFactory::getApplication();
$redirct = 'your url';
$mainframe->redirect($redirct);
share|improve this answer
in this case authorization doesn't work. I think i need some ivent like onAfterRoute, but which works after authorization only. – user1692333 Oct 8 '12 at 8:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.