├── .gitignore ├── README.md ├── admin ├── add_form.php └── tab_publish.php ├── code ├── FormGenerator.class.php ├── Forms.class.php ├── General.class.php ├── Module.class.php ├── Placeholders.class.php ├── Resources.class.php ├── TemplateSets.class.php ├── Templates.class.php ├── actions.php └── index.html ├── css ├── builder.css ├── codemirror.css ├── edit_form.css ├── index.html └── styles.css ├── default_template_sets ├── conformist-1.2.json ├── default-1.2.json ├── illuminate-1.1.json ├── prosimple-1.3.json └── theme-default-1.1.json ├── form.php ├── form_resources ├── css.php ├── index.html └── js.php ├── help.php ├── images ├── builder_logo.png ├── dialog_header_bg.png ├── dialog_option.png ├── dialog_selected_option.png ├── icon16.png ├── icon24.png ├── icon26.png ├── icon_form_builder.png ├── loading.gif ├── sidebar_section_loading.gif └── tip.png ├── index.php ├── lang ├── en_us.php └── index.html ├── library.php ├── module_config.php ├── preview.php ├── preview_form.php ├── published └── index.html ├── schemas ├── README.md └── template_set-1.0.0.json ├── scripts ├── builder.js ├── index.html ├── manage_forms.js └── manage_template_sets.js ├── settings.php ├── share └── index.html ├── smarty_plugins ├── eval.tpl ├── function.captcha.php ├── function.code_block.php ├── function.continue_block.php ├── function.display_placeholder_field_type.php ├── function.display_template_set_name.php ├── function.display_template_set_placeholders.php ├── function.display_template_set_templates.php ├── function.display_template_set_type.php ├── function.display_template_set_usage.php ├── function.display_template_type.php ├── function.display_template_usage.php ├── function.error_message.php ├── function.footer.php ├── function.form_builder_edit_link.php ├── function.header.php ├── function.navigation.php ├── function.page.php ├── function.template_sets.php ├── function.template_type_dropdown.php ├── function.template_types.php ├── modifier.in.php ├── placeholders_html.tpl └── templates_html.tpl ├── tab_settings_form_offline.php ├── tab_settings_main.php ├── tab_settings_thanks.php ├── template_sets ├── index.php ├── tab_add_placeholder.php ├── tab_edit_placeholder.php ├── tab_edit_resource.php ├── tab_edit_template.php ├── tab_info.php ├── tab_placeholders.php ├── tab_resources.php └── tab_templates.php └── templates ├── admin ├── add_form.tpl └── tab_publish.tpl ├── help.tpl ├── index.html ├── index.tpl ├── preview.tpl ├── settings.tpl ├── tab_settings_form_offline.tpl ├── tab_settings_main.tpl ├── tab_settings_thanks.tpl └── template_sets ├── index.tpl ├── tab_add_placeholder.tpl ├── tab_edit_placeholder.tpl ├── tab_edit_resource.tpl ├── tab_edit_template.tpl ├── tab_info.tpl ├── tab_placeholders.tpl ├── tab_resources.tpl └── tab_templates.tpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/README.md -------------------------------------------------------------------------------- /admin/add_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/admin/add_form.php -------------------------------------------------------------------------------- /admin/tab_publish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/admin/tab_publish.php -------------------------------------------------------------------------------- /code/FormGenerator.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/code/FormGenerator.class.php -------------------------------------------------------------------------------- /code/Forms.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/code/Forms.class.php -------------------------------------------------------------------------------- /code/General.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/code/General.class.php -------------------------------------------------------------------------------- /code/Module.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/code/Module.class.php -------------------------------------------------------------------------------- /code/Placeholders.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/code/Placeholders.class.php -------------------------------------------------------------------------------- /code/Resources.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/code/Resources.class.php -------------------------------------------------------------------------------- /code/TemplateSets.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/code/TemplateSets.class.php -------------------------------------------------------------------------------- /code/Templates.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/code/Templates.class.php -------------------------------------------------------------------------------- /code/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/code/actions.php -------------------------------------------------------------------------------- /code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/code/index.html -------------------------------------------------------------------------------- /css/builder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/css/builder.css -------------------------------------------------------------------------------- /css/codemirror.css: -------------------------------------------------------------------------------- 1 | body.editbox { 2 | font-size: 8pt; 3 | } -------------------------------------------------------------------------------- /css/edit_form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/css/edit_form.css -------------------------------------------------------------------------------- /css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/css/index.html -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/css/styles.css -------------------------------------------------------------------------------- /default_template_sets/conformist-1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/default_template_sets/conformist-1.2.json -------------------------------------------------------------------------------- /default_template_sets/default-1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/default_template_sets/default-1.2.json -------------------------------------------------------------------------------- /default_template_sets/illuminate-1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/default_template_sets/illuminate-1.1.json -------------------------------------------------------------------------------- /default_template_sets/prosimple-1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/default_template_sets/prosimple-1.3.json -------------------------------------------------------------------------------- /default_template_sets/theme-default-1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/default_template_sets/theme-default-1.1.json -------------------------------------------------------------------------------- /form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/form.php -------------------------------------------------------------------------------- /form_resources/css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/form_resources/css.php -------------------------------------------------------------------------------- /form_resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/form_resources/index.html -------------------------------------------------------------------------------- /form_resources/js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/form_resources/js.php -------------------------------------------------------------------------------- /help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/help.php -------------------------------------------------------------------------------- /images/builder_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/builder_logo.png -------------------------------------------------------------------------------- /images/dialog_header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/dialog_header_bg.png -------------------------------------------------------------------------------- /images/dialog_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/dialog_option.png -------------------------------------------------------------------------------- /images/dialog_selected_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/dialog_selected_option.png -------------------------------------------------------------------------------- /images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/icon16.png -------------------------------------------------------------------------------- /images/icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/icon24.png -------------------------------------------------------------------------------- /images/icon26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/icon26.png -------------------------------------------------------------------------------- /images/icon_form_builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/icon_form_builder.png -------------------------------------------------------------------------------- /images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/loading.gif -------------------------------------------------------------------------------- /images/sidebar_section_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/sidebar_section_loading.gif -------------------------------------------------------------------------------- /images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/images/tip.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/index.php -------------------------------------------------------------------------------- /lang/en_us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/lang/en_us.php -------------------------------------------------------------------------------- /lang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/lang/index.html -------------------------------------------------------------------------------- /library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/library.php -------------------------------------------------------------------------------- /module_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/module_config.php -------------------------------------------------------------------------------- /preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/preview.php -------------------------------------------------------------------------------- /preview_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/preview_form.php -------------------------------------------------------------------------------- /published/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/published/index.html -------------------------------------------------------------------------------- /schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/schemas/README.md -------------------------------------------------------------------------------- /schemas/template_set-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/schemas/template_set-1.0.0.json -------------------------------------------------------------------------------- /scripts/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/scripts/builder.js -------------------------------------------------------------------------------- /scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/scripts/index.html -------------------------------------------------------------------------------- /scripts/manage_forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/scripts/manage_forms.js -------------------------------------------------------------------------------- /scripts/manage_template_sets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/scripts/manage_template_sets.js -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/settings.php -------------------------------------------------------------------------------- /share/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/share/index.html -------------------------------------------------------------------------------- /smarty_plugins/eval.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/eval.tpl -------------------------------------------------------------------------------- /smarty_plugins/function.captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.captcha.php -------------------------------------------------------------------------------- /smarty_plugins/function.code_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.code_block.php -------------------------------------------------------------------------------- /smarty_plugins/function.continue_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.continue_block.php -------------------------------------------------------------------------------- /smarty_plugins/function.display_placeholder_field_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.display_placeholder_field_type.php -------------------------------------------------------------------------------- /smarty_plugins/function.display_template_set_name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.display_template_set_name.php -------------------------------------------------------------------------------- /smarty_plugins/function.display_template_set_placeholders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.display_template_set_placeholders.php -------------------------------------------------------------------------------- /smarty_plugins/function.display_template_set_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.display_template_set_templates.php -------------------------------------------------------------------------------- /smarty_plugins/function.display_template_set_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.display_template_set_type.php -------------------------------------------------------------------------------- /smarty_plugins/function.display_template_set_usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.display_template_set_usage.php -------------------------------------------------------------------------------- /smarty_plugins/function.display_template_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.display_template_type.php -------------------------------------------------------------------------------- /smarty_plugins/function.display_template_usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.display_template_usage.php -------------------------------------------------------------------------------- /smarty_plugins/function.error_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.error_message.php -------------------------------------------------------------------------------- /smarty_plugins/function.footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.footer.php -------------------------------------------------------------------------------- /smarty_plugins/function.form_builder_edit_link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.form_builder_edit_link.php -------------------------------------------------------------------------------- /smarty_plugins/function.header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.header.php -------------------------------------------------------------------------------- /smarty_plugins/function.navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.navigation.php -------------------------------------------------------------------------------- /smarty_plugins/function.page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.page.php -------------------------------------------------------------------------------- /smarty_plugins/function.template_sets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.template_sets.php -------------------------------------------------------------------------------- /smarty_plugins/function.template_type_dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.template_type_dropdown.php -------------------------------------------------------------------------------- /smarty_plugins/function.template_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/function.template_types.php -------------------------------------------------------------------------------- /smarty_plugins/modifier.in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/modifier.in.php -------------------------------------------------------------------------------- /smarty_plugins/placeholders_html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/placeholders_html.tpl -------------------------------------------------------------------------------- /smarty_plugins/templates_html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/smarty_plugins/templates_html.tpl -------------------------------------------------------------------------------- /tab_settings_form_offline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/tab_settings_form_offline.php -------------------------------------------------------------------------------- /tab_settings_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/tab_settings_main.php -------------------------------------------------------------------------------- /tab_settings_thanks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/tab_settings_thanks.php -------------------------------------------------------------------------------- /template_sets/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/template_sets/index.php -------------------------------------------------------------------------------- /template_sets/tab_add_placeholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/template_sets/tab_add_placeholder.php -------------------------------------------------------------------------------- /template_sets/tab_edit_placeholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/template_sets/tab_edit_placeholder.php -------------------------------------------------------------------------------- /template_sets/tab_edit_resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/template_sets/tab_edit_resource.php -------------------------------------------------------------------------------- /template_sets/tab_edit_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/template_sets/tab_edit_template.php -------------------------------------------------------------------------------- /template_sets/tab_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/template_sets/tab_info.php -------------------------------------------------------------------------------- /template_sets/tab_placeholders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/template_sets/tab_placeholders.php -------------------------------------------------------------------------------- /template_sets/tab_resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/template_sets/tab_resources.php -------------------------------------------------------------------------------- /template_sets/tab_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/template_sets/tab_templates.php -------------------------------------------------------------------------------- /templates/admin/add_form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/admin/add_form.tpl -------------------------------------------------------------------------------- /templates/admin/tab_publish.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/admin/tab_publish.tpl -------------------------------------------------------------------------------- /templates/help.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/help.tpl -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/index.tpl -------------------------------------------------------------------------------- /templates/preview.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/preview.tpl -------------------------------------------------------------------------------- /templates/settings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/settings.tpl -------------------------------------------------------------------------------- /templates/tab_settings_form_offline.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/tab_settings_form_offline.tpl -------------------------------------------------------------------------------- /templates/tab_settings_main.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/tab_settings_main.tpl -------------------------------------------------------------------------------- /templates/tab_settings_thanks.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/tab_settings_thanks.tpl -------------------------------------------------------------------------------- /templates/template_sets/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/template_sets/index.tpl -------------------------------------------------------------------------------- /templates/template_sets/tab_add_placeholder.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/template_sets/tab_add_placeholder.tpl -------------------------------------------------------------------------------- /templates/template_sets/tab_edit_placeholder.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/template_sets/tab_edit_placeholder.tpl -------------------------------------------------------------------------------- /templates/template_sets/tab_edit_resource.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/template_sets/tab_edit_resource.tpl -------------------------------------------------------------------------------- /templates/template_sets/tab_edit_template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/template_sets/tab_edit_template.tpl -------------------------------------------------------------------------------- /templates/template_sets/tab_info.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/template_sets/tab_info.tpl -------------------------------------------------------------------------------- /templates/template_sets/tab_placeholders.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/template_sets/tab_placeholders.tpl -------------------------------------------------------------------------------- /templates/template_sets/tab_resources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/template_sets/tab_resources.tpl -------------------------------------------------------------------------------- /templates/template_sets/tab_templates.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/module-form_builder/HEAD/templates/template_sets/tab_templates.tpl --------------------------------------------------------------------------------