You are here

function msnf_step_features_export in Multistep Nodeform 6

Implementation of hook_features_export().

Parameters

<array> $data: Machine name for the component to export.

<array> $export: Array of all components to be exported.

<string> $module_name: The name of the feature module to be generated.

Return value

<array> Array of further processors that should be called.

File

includes/msnf.features.inc, line 40
Features integration for "Multistep Nodeform".

Code

function msnf_step_features_export($data, &$export, $module_name) {
  $export['dependencies']['msnf'] = 'msnf';
  foreach ($data as $component) {
    $export['features']['msnf_step'][$component] = $component;
  }

  // No further processing needed.
  return array();
}