| 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 |
|