HEX
Server: Apache/2.4.54 (Debian)
System: Linux a5825d2beacc 4.15.0-197-generic #208-Ubuntu SMP Tue Nov 1 17:23:37 UTC 2022 x86_64
User: root (0)
PHP: 8.1.14
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/complianz-gdpr/integrations/plugins/user-registration.php
<?php
defined( 'ABSPATH' ) or die( "you do not have access to this page!" );

/**
 * User Registration https://nl.wordpress.org/plugins/user-registration/
 */

add_filter( 'cmplz_known_script_tags', 'cmplz_user_registration_script' );
function cmplz_user_registration_script( $tags ) {
	$recaptcha_enabled
		= get_option( 'user_registration_login_options_enable_recaptcha',
		'no' );

	if ( 'yes' == $recaptcha_enabled ) {
		$tags[] = 'user-registration.min.js';
		$tags[] = 'user-registration.js';
		$tags[] = 'user-registration-form-validator.min.js';
	}

	return $tags;
}

/**
 * Conditionally add the dependency
 * $deps['wait-for-this-script'] = 'script-that-should-wait';
 */

add_filter( 'cmplz_dependencies', 'cmplz_userregistration_dependencies' );
function cmplz_userregistration_dependencies( $tags ) {
	$recaptcha_enabled
		= get_option( 'user_registration_login_options_enable_recaptcha',
		'no' );

	if ( 'yes' == $recaptcha_enabled ) {
		$tags['recaptcha/api.js'] = 'user-registration-form-validator.min.js';
	}

	return $tags;
}