As stated here http://crusthq.com/projects/uFlex/ managing other users is out of the class.
However you could extend the uFlex class and add your own methods. For example you can create a updateUser method which will globally update any user. The source of the original update method could be used, just remove the part where it checks if the user is signed and satisfy the dependency of a user id.
There is another thing you could try, and is cloning your instace of uFlex. This is usually used by people who want a signed in user register other users which can kinda of fall under the user management topic. I have not try it my self but you could try it. Assuming $user is your instance of uFlex:
$nuser = clone $user;
$nuser->id = $userIdToManage;
$nuser->signed = true;
$nuser->update("first_name" => "Mau");
In the future I would to implement some kind of a factory that would implement full user magement features.
--
Project's home page http://crusthq.com/projects/uFlex/
---
You received this message because you are subscribed to the Google Groups "uFlex" group.
To unsubscribe from this group and stop receiving emails from it, send an email to uflex+un...@googlegroups.com.
To post to this group, send email to uf...@googlegroups.com.
Visit this group at http://groups.google.com/group/uflex.
For more options, visit https://groups.google.com/groups/opt_out.