Skip to content
Snippets Groups Projects
Commit ed0982ad authored by jaapjansma's avatar jaapjansma
Browse files

fixed issue after adding smart group

parent 58bb0ba2
No related branches found
No related tags found
No related merge requests found
...@@ -226,6 +226,29 @@ class CRM_Contact_DataProcessorContactSummaryTab implements UIFormOutputInterfac ...@@ -226,6 +226,29 @@ class CRM_Contact_DataProcessorContactSummaryTab implements UIFormOutputInterfac
return "civicrm/dataprocessor_contact_summary/{$dataProcessor['name']}"; return "civicrm/dataprocessor_contact_summary/{$dataProcessor['name']}";
} }
/**
* Returns the data processor name from a url.
*
* @param $url
*
* @return string
*/
public function getDataProcessorNameFromUrl($url) {
return str_replace('civicrm/dataprocessor_contact_summary/', '', $url);
}
/**
* Returns the name of the contact id field.
*
* @param $config
*
* @return string|false
*/
public function getContactIdFieldNameFromConfig($config) {
return false;
}
/** /**
* Returns the url for the page/form this output will show to the user * Returns the url for the page/form this output will show to the user
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment