You are here

function msnf_field_formatter_options in Multistep Nodeform 7

Return an array of msnf_formatter options.

1 call to msnf_field_formatter_options()
msnf_field_ui_overview_form_alter in includes/msnf.field_ui.inc
Function to alter the fields overview screen.

File

includes/msnf.field_ui.inc, line 285
msnf.field_ui.inc is a file that contains most functions needed on the Fields UI Manage forms (display and fields).

Code

function msnf_field_formatter_options() {
  $options =& drupal_static(__FUNCTION__);
  if (!isset($options)) {
    $options = array();
    $step_types = msnf_formatter_info();
    foreach ($step_types as $name => $step_type) {
      $options[$name] = $step_type['label'];
    }
  }
  return $options;
}