function msnf_theme in Multistep Nodeform 7
Same name and namespace in other branches
- 6 msnf.module \msnf_theme()
Implements hook_theme().
File
- ./
msnf.module, line 175 - Main functions for module "Multistep Nodeform".
Code
function msnf_theme() {
return array(
'msnf_form_step' => array(
'render element' => 'element',
),
'msnf_block_step_info' => array(
'variables' => array(
'steps' => array(),
'current_step' => NULL,
'form_state' => array(),
),
'path' => drupal_get_path('module', 'msnf') . '/theme',
'template' => 'msnf-block-step-info',
),
'msnf_form_step_info' => array(
'variables' => array(
'steps' => array(),
'current_step' => NULL,
),
'path' => drupal_get_path('module', 'msnf') . '/theme',
'template' => 'msnf-form-step-info',
),
);
}