You are here

function theme_fc_incomplete_complete in Field Complete 7

@file Field Incomplete - Provides a block displaying of what's currently incomplete on an entity - themes.

1 theme call to theme_fc_incomplete_complete()
fc_incomplete_preprocess_fc_incomplete_header in fc_incomplete/fc_incomplete.module
Implements hook_preprocess_fc_incomplete_header().

File

fc_incomplete/fc_incomplete.themes.inc, line 7
Field Incomplete - Provides a block displaying of what's currently incomplete on an entity - themes.

Code

function theme_fc_incomplete_complete($vars) {
  return '[' . ($vars['complete'] ? t('complete') : t('incomplete')) . ']';
}