PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.22
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.22
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 / captcha / captcha_keys.php

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

34 lines 1.3 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
7 <p class="howto">
8 <?php
9 $settings = FrmCaptchaFactory::get_settings_object( $captcha );
10 $prefix = $settings->get_settings_prefix();
11
12 printf(
13 /* translators: %1$s: Captcha name, %2$s: Start link HTML, %3$s: End link HTML */
14 esc_html__( '%1$s requires a Site and Private API key. Sign up for a %2$sfree %1$s key%3$s.', 'formidable' ),
15 esc_html( $settings->get_name() ),
16 '<a href="' . esc_url( $settings->get_documentation_url() ) . '" target="_blank">',
17 '</a>'
18 );
19 ?>
20 </p>
21 <p class="frm6 frm_form_field">
22 <label class="frm_help" for="frm_<?php echo esc_attr( $prefix ); ?>pubkey" title="<?php echo esc_attr( $settings->get_site_key_tooltip() ); ?>">
23 <?php esc_html_e( 'Site Key', 'formidable' ); ?>
24 </label>
25 <input type="text" name="frm_<?php echo esc_html( $prefix ); ?>pubkey" id="frm_<?php echo esc_html( $prefix ); ?>pubkey" size="42" value="<?php echo esc_attr( $settings->get_pubkey() ); ?>" />
26 </p>
27
28 <p class="frm6 frm_form_field">
29 <label for="frm_<?php echo esc_attr( $prefix ); ?>privkey">
30 <?php esc_html_e( 'Secret Key', 'formidable' ); ?>
31 </label>
32 <input type="text" name="frm_<?php echo esc_html( $prefix ); ?>privkey" id="frm_<?php echo esc_html( $prefix ); ?>privkey" size="42" value="<?php echo esc_attr( $settings->secret ); ?>" />
33 </p>
34