function _fc_progress_theme in Field Complete 7
Implements hook_theme().
1 call to _fc_progress_theme()
- fc_progress_theme in fc_progress/
fc_progress.module - Implements hook_theme().
File
- fc_progress/
fc_progress.registry.inc, line 24 - Field Complete Progress - Provides blocks to display a progress bar of Field completion - registry.
Code
function _fc_progress_theme() {
return array(
'fc_progress_bar' => array(
'variables' => array(
'entity_type' => '',
'entity' => NULL,
),
'template' => 'fc-progress-bar',
'file' => 'fc_progress.blocks.inc',
),
'fc_progress_next' => array(
'variables' => array(
'entity_type' => '',
'entity' => NULL,
'field_name' => '',
),
'template' => 'fc-progress-next',
'file' => 'fc_progress.blocks.inc',
),
);
}