1. denfung
  2. Support
  3. Monday, December 08 2014, 01:10 PM
Hi,

Does anyone know if EasyProfile support retrieve user profile via the custom field, say Membership_ID. I have this custom field created and I would like to retrieve the user profile via PHP code.

I understand there is JsnUser object which only retrieve user profile via id_of_user

$user=new JsnUser(<id_of_user>;);


How am I able to retrieve user object via custom field.


Thanks,
Dennis
admin Accepted Answer
Admin
Hi,
to do this you can use a simple query like:
$db=JFactory::getDbo();
$query=$db->getQuery(true);
$query->select('id')->from('#__jsn_users')->where('alias_of_field="text_to_search"');
$db->setQuery($query);
$users_id=$db->loadColumn(); // this return an array of all users found
$user_id=$db->loadResult(); // this return id of first user found
  1. more than a month ago
  2. Support
  3. # 1
denfung Accepted Answer
Thanks for the quick reply.

Dennis
  1. more than a month ago
  2. Support
  3. # 2
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.
Sorry, the discussion is currently locked. You will not be able to post a reply at the moment.