You are here

function msnf_msnf_formatter_info in Multistep Nodeform 7

Implements hook_msnf_formatter_info().

File

./msnf.module, line 307
Main functions for module "Multistep Nodeform".

Code

function msnf_msnf_formatter_info() {
  return array(
    'default' => array(
      'label' => t('Default'),
      'description' => t('The form step renders the containing form elements in a single div with a title and description.'),
      'instance_settings' => array(
        'description' => '',
        'show_label' => 1,
        'label_element' => 'h3',
        'classes' => '',
        'skip_non_required' => 1,
        'hide_if_empty' => 0,
        'buttons' => array(
          'previous' => t('Back'),
          'next' => t('Next'),
          'skip' => t('Skip next step'),
        ),
      ),
    ),
  );
}