PATH:
home
/
lab2454c
/
argowells.com
/
wp-content
/
plugins
/
um-recaptcha
/
includes
/
admin
/
templates
/
form
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } $allowed_html = array( 'strong' => array( 'style' => true, ), ); ?> <div class="um-admin-metabox"> <?php $recaptcha_enabled = UM()->options()->get( 'g_recaptcha_status' ); ?> <?php if ( $recaptcha_enabled ) { ?> <p><?php echo wp_kses( __( 'Google reCAPTCHA seems to be <strong style="color:#7ACF58;">enabled</strong> by default.', 'um-recaptcha' ), $allowed_html ); ?></p> <?php } else { ?> <p><?php echo wp_kses( __( 'Google reCAPTCHA seems to be <strong style="color:#C74A4A;">disabled</strong> by default.', 'um-recaptcha' ), $allowed_html ); ?></p> <?php } ?> <?php $fields = array( array( 'id' => '_um_login_g_recaptcha_status', 'type' => 'select', 'label' => __( 'reCAPTCHA status on this form', 'um-recaptcha' ), 'value' => UM()->query()->get_meta_value( '_um_login_g_recaptcha_status', null, $recaptcha_enabled ), 'options' => array( '0' => __( 'No', 'um-recaptcha' ), '1' => __( 'Yes', 'um-recaptcha' ), ), ), ); $version = UM()->options()->get( 'g_recaptcha_version' ); if ( 'v3' === $version ) { $fields[] = array( 'id' => '_um_login_g_recaptcha_score', 'type' => 'text', 'label' => __( 'reCAPTCHA score', 'um-recaptcha' ), 'value' => UM()->query()->get_meta_value( '_um_login_g_recaptcha_score', null, UM()->options()->get( 'g_reCAPTCHA_score' ) ), 'conditional' => array( '_um_login_g_recaptcha_status', '=', '1' ), ); } UM()->admin_forms( array( 'class' => 'um-form-login-recaptcha um-top-label', 'prefix_id' => 'form', 'fields' => $fields, ) )->render_form(); ?> <div class="clear"></div> </div>
[+]
..
[-] login-recaptcha.php
[edit]
[-] register-recaptcha.php
[edit]