It would be great if the profile mapping features of this module could be extended to CiviCRM fields as well. We would be interested in helping with code enhancements or a separate module if hooks are available to make this possible.

CommentFileSizeAuthor
#3 civicrm-profile-fields-ui-933604.patch705 byteskreynen

Comments

ericdrogers’s picture

Ditto!

kreynen’s picture

subscribe

kreynen’s picture

Version: 6.x-1.3 » 7.x-2.x-dev
StatusFileSize
new705 bytes

This patch just adds the CiviCRM field options to the UI. Additional code needs to be added to rpx_core.module to actually process the values. I might be missing something, but it looks like it will be relatively easy to add additional code to process the CiviCRM values if CiviCRM in enabled the way Profile2 is handled in the _rpx_import_user_data function.

if(module_exists('profile2') && $mapping['set'] == 'profile2') {
  $entity_type = 'profile2';
  $entity = profile2_load_by_user($user->uid, $mapping['bundle']);
}  
Anonymous’s picture

Subscribe

I did not see any CiviCRM code in rpx_ui.module. Is CiviCRM Profile field mapping already part of the current version, at this moment 7.x-2.1?

Are there plans to integrate civicrm mapping in Janrain Engage (formerly RPX)?

On civicrm.org I saw a post from kreynen: http://forum.civicrm.org/index.php/topic,19941.msg83221.html#msg83221. They speak about webform-civicrm (and Profile2) as possible solutions for this problem. Is this issue solved in webform-civicrm (or Profile2)? I cannot find any issues in these modules.

My main question, is CiviCRM Profile field mapping already posible and how can that be done?

petednz’s picture

does this relate to the profile2 module and if so how?