// Handle ID to label conversion for contact fields
$entryFound = $this->alterDisplayContactFields($row, $rows, $rowNum, 'contact/currentEmployer', 'View Contact Detail') ? TRUE : $entryFound;
$entryFound = $this->alterDisplayAddressFields($row, $rows, $rowNum, NULL, NULL) ? TRUE : $entryFound;
- // display birthday in the configured custom format
- if (array_key_exists('civicrm_contact_birth_date', $row)) {
- $birthDate = $row['civicrm_contact_birth_date'];
- if ($birthDate) {
- $rows[$rowNum]['civicrm_contact_birth_date'] = CRM_Utils_Date::customFormat($birthDate, '%Y%m%d');
- }
- $entryFound = TRUE;
- }
// convert employee name to links
if (array_key_exists('civicrm_contact_sort_name', $row) &&