Skip to content
Snippets Groups Projects

Add option to hide 'View Contact' link on 'Contact Search' output

Merged mattwire requested to merge mattwire/dataprocessor:hideviewcontact into master
Files
22
@@ -18,6 +18,21 @@ class CRM_Contact_Form_DataProcessorContactSearch extends CRM_DataprocessorSearc
return 'Contact';
}
/**
* This function could be overridden in child classes to change default configuration.
*
* @param $output
*
* @return array
*/
protected function alterDataProcessorOutput($output) {
// link_to_view_contact option was added in 0.12. So we default to TRUE to match previous behaviour
if (!isset($output['configuration']['link_to_view_contact'])) {
$output['configuration']['link_to_view_contact'] = TRUE;
}
return $output;
}
/**
* Returns the url for view of the record action
*
Loading