configs->get_value('aiowps_default_recaptcha')) {
$this->print_google_recaptcha_api();
}
// Activate the copy protection feature for non-admin users
$copy_protection_active = $aio_wp_security->configs->get_value('aiowps_copy_protection') == '1';
if ( $copy_protection_active && !current_user_can(AIOWPSEC_MANAGEMENT_PERMISSION) ) {
$this->output_copy_protection_code();
}
//TODO - add other footer output content here
}
/**
* For Woocommerce my account page - display two separate Google reCaptcha forms "explicitly"
* @global type $aio_wp_security
*/
function print_google_recaptcha_api() {
global $aio_wp_security;
$site_key = esc_html( $aio_wp_security->configs->get_value('aiowps_recaptcha_site_key') );
?>