DokuWiki

It's better when it's simple

User Tools

Site Tools


tips:change_user_name_after_authentication

This is an old revision of the document!


If you implemented a custom authentication backend and want to change the username provide by the user after authentication. Then implement your checkPass function with the $user parameter passed by reference:

function checkPass(&$user,$pass)
{
  if(user_authenticated($user,$pass)){
    $user = $some_unique_id_fetched_from_your_own_user_db;
    return true;
  }else{
    return false;
  }
}
tips/change_user_name_after_authentication.1334839501.txt.gz · Last modified: 2012-04-19 14:45 by 81.83.17.184

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki