You are here

function _wfm_compatible_components in Webform Multiple (WFM) 7

Get a list of the components compatible with this module.

1 call to _wfm_compatible_components()
wfm_form_webform_component_edit_form_alter in ./wfm.module
Implements hook_form_FORM_ID_alter().

File

./wfm.module, line 800
Main module file for Webform Multiple (WFM).

Code

function _wfm_compatible_components() {
  $types = array(
    'email',
    'fieldset',
    'name',
    'number',
    'textarea',
    'textfield',
    'time',
  );
  drupal_alter('wfm_compatible_components', $types);
  return $types;
}