$contactCols = $this->getColumns('Contact', array(
'order_bys_defaults' => array('sort_name' => 'ASC '),
'fields_defaults' => ['sort_name'],
+ 'fields_excluded' => ['id'],
+ 'fields_required' => ['id'],
'filters_defaults' => array('is_deleted' => 0),
'no_field_disambiguation' => TRUE,
));
$this->_absoluteUrl
);
$rows[$rowNum]['civicrm_contact_sort_name_link'] = $url;
- $rows[$rowNum]['civicrm_contact_sort_name_hover'] = ts("View contact details for this record.");
+ $rows[$rowNum]['civicrm_contact_sort_name_hover'] = ts("View Contact Summary for this Contact.");
$entryFound = TRUE;
}
}
$entryFound = TRUE;
}
- if (array_key_exists('civicrm_grant_grant_report_received', $row)) {
- if ($value = $row['civicrm_grant_grant_report_received']) {
- if ($value == 1) {
- $value = 'Yes';
- }
- else {
- $value = 'No';
- }
- $rows[$rowNum]['civicrm_grant_grant_report_received'] = $value;
- }
- $entryFound = TRUE;
- }
if (!$entryFound) {
break;
}