You are here

function _fc_incomplete_theme in Field Complete 7

Implements hook_theme().

1 call to _fc_incomplete_theme()
fc_incomplete_theme in fc_incomplete/fc_incomplete.module
Implements hook_theme().

File

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

Code

function _fc_incomplete_theme() {
  return array(
    'fc_incomplete_header' => array(
      'variables' => array(
        'complete' => FALSE,
        'name' => '',
        'field_name' => '',
        'entity_type' => '',
        'entity' => NULL,
        'bundle' => '',
        'depth' => 0,
      ),
      'template' => 'fc-incomplete-header',
    ),
    'fc_incomplete_complete' => array(
      'variables' => array(
        'complete' => FALSE,
      ),
      'file' => 'fc_incomplete.themes.inc',
    ),
    'fc_incomplete_entity_name' => array(
      'variables' => array(
        'entity_type' => '',
        'depth' => 0,
      ),
      'file' => 'fc_incomplete.themes.inc',
    ),
  );
}