function msnf_step_types in Multistep Nodeform 6
Same name and namespace in other branches
- 7 includes/msnf.steps.inc \msnf_step_types()
Return a list of all available step types.
1 call to msnf_step_types()
- msnf_step_overview_form in includes/
msnf.admin.inc - Menu callback; listing of steps for a content type.
File
- includes/
msnf.steps.inc, line 115
Code
function msnf_step_types() {
$types = array(
'standard' => t('Standard step'),
);
// Allow other modules to add new step_types.
$types = array_merge($types, module_invoke_all('msnf_step_types'));
return $types;
}