AuthPlugin::doGetUserInfo PHP Method

doGetUserInfo() public method

Update local user profile from the remote source, if enabled.
public doGetUserInfo ( $user ) : boolean
$user User
return boolean true if successful
    function doGetUserInfo($user)
    {
        if (isset($this->settings['syncProfiles'])) {
            return $this->getUserInfo($user);
        }
        return false;
    }