You are here

function webform_conditional_expand in Webform 7.4

Form API #process function to expand a webform conditional element.

1 string reference to 'webform_conditional_expand'
webform_element_info in ./webform.module
Implements hook_element_info().

File

./webform.module, line 4991
This module provides a simple way to create forms and questionnaires.

Code

function webform_conditional_expand($element) {
  module_load_include('inc', 'webform', 'includes/webform.conditionals');
  return _webform_conditional_expand($element);
}