PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.10
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.10
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / frm-forms / edit.php

edit.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.10, at classes/views/frm-forms/edit.php

54 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5 ?>
6 <div id="frm_builder_page" class="frm_wrap">
7 <div class="frm_page_container">
8
9 <?php
10 require FrmAppHelper::plugin_path() . '/classes/views/frm-forms/mb_insert_fields.php';
11 FrmAppHelper::get_admin_header(
12 array(
13 'label' => __( 'Build Form', 'formidable' ),
14 'form' => $form,
15 'hide_title' => true,
16 'publish' => array( 'FrmFormsController::form_publish_button', compact( 'values' ) ),
17 )
18 );
19 ?>
20
21 <div class="columns-2">
22 <?php require FrmAppHelper::plugin_path() . '/classes/views/frm-forms/add_field_links.php'; ?>
23 <div id="post-body-content">
24
25 <div class="frm_form_builder with_frm_style">
26
27 <p class="frm_hidden frm-no-margin">
28 <button class="frm_submit_<?php echo ! empty( $values['ajax_load'] ) ? '' : 'no_'; ?>ajax button-primary">
29 <?php esc_attr_e( 'Update', 'formidable' ); ?>"
30 </button>
31 </p>
32
33 <form method="post">
34 <?php require FrmAppHelper::plugin_path() . '/classes/views/frm-forms/form.php'; ?>
35 </form>
36
37 </div>
38 </div>
39
40 </div>
41 </div>
42 </div>
43 <div class="frm_hidden">
44 <svg id="frm_break_field_group_svg" class="frmsvg">
45 <use xlink:href="#frm_break_field_group_icon"></use>
46 </svg>
47 <svg id="frm_gear_svg" class="frmsvg">
48 <use xlink:href="#frm_settings_icon"></use>
49 </svg>
50 <svg id="frm_trash_svg" class="frmsvg">
51 <use xlink:href="#frm_delete_icon"></use>
52 </svg>
53 </div>
54