You are here

function theme_fc_progress_entity_name in Field Complete 7

File

fc_progress/fc_progress.themes.inc, line 11
Field Complete Progress - Provides blocks to display a progress bar of Field completion - themes.

Code

function theme_fc_progress_entity_name($vars) {
  $info = entity_get_info($vars['entity_type']);
  return '(' . ($vars['depth'] == 0 ? t('Top level') : $info['label']) . ')';
}