You are here

function theme_crm_core_contact_ui_type_overview in CRM Core 7

1 theme call to theme_crm_core_contact_ui_type_overview()
crm_core_contact_ui_types_overview in modules/crm_core_contact_ui/crm_core_contact_ui.admin.inc
@file Interface elements for adding, editing, and otherwise working with contact types.

File

modules/crm_core_contact_ui/theme/crm_core_contact_ui_type.theme.inc, line 3

Code

function theme_crm_core_contact_ui_type_overview($vars) {
  $contact_type = $vars['contact_type'];
  $output = '';
  if ((bool) $contact_type->disabled) {
    $output .= '<span style="text-decoration:line-through">';
  }
  $output .= check_plain($contact_type->name);
  $output .= ' <small> (Machine name: ' . check_plain($contact_type->type) . ')</small>';
  $output .= '<div class="description">' . filter_xss_admin($contact_type->description) . '</div>';
  if ((bool) $contact_type->disabled) {
    $output .= '</span>';
  }
  return $output;
}