Hello,

Thank you for this module, it was exactly what I was looking for. Here are some issues for improving this module:
- Permission access to the profile_csv settings page: this page is not accessible to others roles than administrator. It could be interesting to be able to change the permission access to this page for another role. For instance, an editor could select which field to export.
- Location details: I added the module location but I can't select these fields in the settings page
- Some fields are empty: one of the profile field appears empty in the csv file but it's not in the profile detail.

Thank you and sorry for the bad english

Comments

julie.metivier’s picture

Project: Transformations -- CSV » Profile CSV
Version: 6.x-1.0-beta1 » 6.x-1.0

Sorry for this mistake!

julie.metivier’s picture

Title: Request for some improvements » Cant change the permission access to the profile_csv settings page

Auto reply :)
I found a solution for the fields empty here #515200: Profile Export CSV - Missing field data
Concerning the location details, there is already an issue open here #351065: export "location" fields with CSV, no needs to open another one

I've done this in profile_csv.module to change the permission access to the settings page:

Comment the line 8

//define('PROFILE_CSV_PERM_DOWNLOAD',  'download profiles');

Change the permission array on line 20

  return array('manage user export options','download profiles');

change the access arguments on line 32

    'access arguments' => array('manage user export options'),

and 38

    'access arguments' => array('download profiles'),

But it's still not working... any help would be welcome

Thank you