You are here

function revenue_sharing_by_role_get_profile_fields in Google AdSense integration 5.2

1 call to revenue_sharing_by_role_get_profile_fields()
revenue_sharing_by_role_settings in contrib/revenue_sharing_by_role/revenue_sharing_by_role.module

File

contrib/revenue_sharing_by_role/revenue_sharing_by_role.module, line 193

Code

function revenue_sharing_by_role_get_profile_fields() {
  $profile_list = array(
    0 => 'None',
  );
  $result = db_query("SELECT fid, title FROM {profile_fields} ORDER BY fid");
  while ($row = db_fetch_object($result)) {
    $profile_list[$row->fid] = $row->title;
  }
  return $profile_list;
}