You are here

function fc_incomplete_build in Field Complete 7

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

File

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

Code

function fc_incomplete_build($entity_type, $entity) {
  $incompletes = new fcIncomplete('', NULL, $entity_type, $entity);
  $incompletes
    ->process();
  return $incompletes;
}