PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.2
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.2
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-settings / misc.php

misc.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 5.2, at classes/views/frm-settings/misc.php

37 lines 1.7 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 <p>
7 <label for="frm_tracking">
8 <input type="checkbox" name="frm_tracking" id="frm_tracking" value="1" <?php checked( $frm_settings->tracking, 1 ); ?> />
9 <?php esc_html_e( 'Allow Formidable Forms to track plugin usage to help us ensure compatibility and simplify our settings.', 'formidable' ); ?>
10 </label>
11 </p>
12
13 <!-- Deprecated settings can only be switched away from the default -->
14 <input type="hidden" id="frm_use_html" name="frm_use_html" value="1" />
15
16 <?php if ( empty( $frm_settings->use_html ) ) { ?>
17 <p>
18 <label for="frm_use_html">
19 <input type="checkbox" id="frm_use_html" name="frm_use_html" value="1" <?php checked( $frm_settings->use_html, 1 ); ?> />
20 <?php esc_html_e( 'Use HTML5 in forms', 'formidable' ); ?>
21 </label>
22 <span class="frm_help frm_icon_font frm_tooltip_icon"
23 title="<?php esc_attr_e( 'We recommend using HTML 5 for your forms. It adds some nifty options like placeholders, patterns, and autocomplete.', 'formidable' ); ?>"></span>
24 </p>
25 <?php } ?>
26
27 <p class="frm_uninstall">
28 <label for="frm-uninstall-box">
29 <input type="checkbox" id="frm-uninstall-box" value="1" onchange="frm_show_div('frm_uninstall_now',this.checked,true,'#')" />
30 <?php esc_html_e( 'Uninstall Formidable Forms and permanently delete all data.', 'formidable' ); ?>
31 </label>
32 <a href="javascript:void(0)" id="frm_uninstall_now" class="frm_hidden" data-frmverify="<?php esc_attr_e( 'Are you sure you want to delete all forms, form data, and all other Formidable data. There is no Undo.', 'formidable' ); ?>" data-frmuninstall="1">
33 <?php esc_html_e( 'Uninstall Now', 'formidable' ); ?>
34 </a>
35 <span class="frm-wait frm_spinner"></span>
36 </p>
37