2

onUserAuthenticateイベント ヘルプを使用して、Joomla 2.5 用の小さな認証プラグイン (クラス) を作成しました。次のようになります。

class plgauthenticationAuth extends JPlugin{

    public function plgauthenticationAuth($subject, $config){
        parent::__construct($subject,$config);
    }

    public function onUserAuthenticate($credentials, $options, $response){
//my code

ここからカスタム URL へのリダイレクトを設定するにはどうすればよいですか?

4

1 に答える 1

1

これを試してください

$mainframe = JFactory::getApplication();
$redirct = 'your url';
$mainframe->redirect($redirct);
于 2012-10-08T08:08:04.247 に答える