You are here

function msnf_features_api in Multistep Nodeform 6

Implementation of hook_features_api().

File

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

Code

function msnf_features_api() {
  $path = drupal_get_path('module', 'msnf') . '/includes';
  return array(
    'msnf_step' => array(
      'name' => 'Multistep Nodeform Step',
      'file' => $path . '/msnf.features.inc',
      'default_hook' => 'msnf_step_default_steps',
      'feature_source' => TRUE,
    ),
  );
}