You are here

function crm_core_match_testing_page_title in CRM Core 7

@file Contains functionality for testing purposes.

1 string reference to 'crm_core_match_testing_page_title'
crm_core_match_menu in modules/crm_core_match/crm_core_match.module
Implements hook_menu().

File

modules/crm_core_match/crm_core_match.test.inc, line 9
Contains functionality for testing purposes.

Code

function crm_core_match_testing_page_title($contact) {
  return t('Matching Rules for @contact_name', array(
    '@contact_name' => crm_core_contact_title($contact),
  ));
}