You are here

function flexiform_form_wrapper in Flexiform 7

Flexiform Form Wrapper to ensure that the flexiform include file is always present.

1 string reference to 'flexiform_form_wrapper'
flexiform_forms in ./flexiform.module
Implements hook_forms().

File

./flexiform.module, line 372
Module for the Flexiform system.

Code

function flexiform_form_wrapper($form, &$form_state) {
  form_load_include($form_state, 'inc', 'flexiform', 'includes/flexiform.flexiform');
  return $form;
}