CRM-15028 - Fix participant import field labels
authorColeman Watts <coleman@civicrm.org>
Wed, 6 Aug 2014 12:49:23 +0000 (13:49 +0100)
committerColeman Watts <coleman@civicrm.org>
Wed, 6 Aug 2014 12:49:23 +0000 (13:49 +0100)
CRM/Event/BAO/Participant.php

index 1348cb0bc5dacd2a9ed853347bd0152a7f12a94d..bc959413a0317f071f50d23a482b97d80f34222b 100644 (file)
@@ -645,28 +645,34 @@ GROUP BY  participant.event_id
 
       $note = array(
         'participant_note' => array(
-          'title' => 'Participant Note',
+          'title' => ts('Participant Note'),
           'name' => 'participant_note',
           'headerPattern' => '/(participant.)?note$/i',
         ));
 
+      // Split status and status id into 2 fields
+      // Fixme: it would be better to leave as 1 field and intelligently handle both during import
       $participantStatus = array(
         'participant_status' => array(
-          'title' => 'Participant Status',
+          'title' => ts('Participant Status'),
           'name' => 'participant_status',
           'data_type' => CRM_Utils_Type::T_STRING,
         ));
+      $tmpFields['participant_status_id']['title'] = ts('Participant Status Id');
 
+      // Split role and role id into 2 fields
+      // Fixme: it would be better to leave as 1 field and intelligently handle both during import
       $participantRole = array(
         'participant_role' => array(
-          'title' => 'Participant Role',
+          'title' => ts('Participant Role'),
           'name' => 'participant_role',
           'data_type' => CRM_Utils_Type::T_STRING,
         ));
+      $tmpFields['participant_role_id']['title'] = ts('Participant Role Id');
 
       $eventType = array(
         'event_type' => array(
-          'title' => 'Event Type',
+          'title' => ts('Event Type'),
           'name' => 'event_type',
           'data_type' => CRM_Utils_Type::T_STRING,
         ));