You are here

function msnf_step_types in Multistep Nodeform 7

Same name and namespace in other branches
  1. 6 includes/msnf.steps.inc \msnf_step_types()

Return a list of all available step types.

File

includes/msnf.steps.inc, line 126
Step crud functions.

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;
}