You are here

function form_builder_get_properties in Form Builder 7

Same name and namespace in other branches
  1. 6 includes/form_builder.api.inc \form_builder_get_properties()

Get a list of all properties that are supported within a form type.

Deprecated

Deprecated since 1.8 and will be removed in 2.0. Use the Form / Element or Property classes instead of the info-arrays.

File

includes/form_builder.api.inc, line 14
form_builder.api.inc Universally used API functions within the Form builder module.

Code

function form_builder_get_properties($form_type, $reset = FALSE) {
  return FormBuilderLoader::instance()
    ->getPropertyInfo($form_type, $reset);
}