You are here

function crm_core_contact_ui_menu_alter in CRM Core 7

Implements hook_menu_alter().

File

modules/crm_core_contact_ui/crm_core_contact_ui.module, line 104
Provides a user interface for CRM Core Contact.

Code

function crm_core_contact_ui_menu_alter(&$items) {
  $items['admin/structure/crm-core/contact-types']['type'] = MENU_LOCAL_TASK;
  $dashboard_enabled = variable_get('crm_core_dashboard_enabled', FALSE);
  if (!$dashboard_enabled) {
    $items['crm-core/contact']['type'] = MENU_DEFAULT_LOCAL_TASK;
  }
}