$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,
));