This project is not covered by Drupal’s security advisory policy.

The purpose of Form Builder CRUD is to provide a permanent storage mechanism for the Form Builder module.

D7 Usage

This is an API only module. See Form Builder Field for an example implementation.

D6 Usage

The Drupal 6 version of this module is unsupported.
After enabling this module, go to Administer > Build > Form builder and you will see an empty table. Click on Add to start creating your form.

Once your form is created and saved, you will see it populating the table, from where you can administer it.

To actually access the form, call the following line from your module:

$form = form_builder_crud_form_load($form_id);
$form['#submit'][] = 'my_submission_function';

Where $form_id is the ID of the form you created with the drag-drop interface and 'my_submission_function' should be an actual submission function that you have previously programmed. Now you should be able to treat the $form as any other Drupal form in your website.

Credits

D6 version created by Victor Kareh (vkareh)

Project information

  • caution Minimally maintained
    Maintainers monitor issues, but fast responses are not guaranteed.
  • caution Maintenance fixes only
    Considered feature-complete by its maintainers.
  • Module categories: Developer Tools
  • chart icon34 sites report using this module
  • Created by vkareh on , updated
  • shield alertThis project is not covered by the security advisory policy.
    Use at your own risk! It may have publicly disclosed vulnerabilities.

Releases