PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.32.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.32.1
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-fields / back-end / field-submit.php

field-submit.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.32.1, at classes/views/frm-fields/back-end/field-submit.php

21 lines 427 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * View for submit button field in form builder
4 *
5 * @since 6.9
6 *
7 * @package Formidable
8 *
9 * @var array $field Field array.
10 */
11
12 if ( ! defined( 'ABSPATH' ) ) {
13 die( 'You are not allowed to call this page directly.' );
14 }
15 ?>
16 <p class="frm-form-button">
17 <button id="field_label_<?php echo intval( $field['id'] ); ?>" class="frm_button_submit" disabled>
18 <?php echo esc_html( $field['name'] ); ?>
19 </button>
20 </p>
21