HEX
Server: Apache
System: Linux ebs-147252 5.10.0-30-amd64 #1 SMP Debian 5.10.218-1 (2024-06-01) x86_64
User: jumuhardware (65594)
PHP: 8.2.20
Disabled: link,symlink,passthru,exec,system,shell_exec,proc_open,popen,pcntl_exec,socket_bind,stream_socket_server,pcntl_fork,pcntl_rfork
Upload Files
File: /home/wwwroot/jumuhardware/wwwroot/wp-content/plugins/contact-form-7/includes/swv/script-loader.php
<?php

add_action(
	'wp_enqueue_scripts',
	function () {
		$assets = array();
		$asset_file = wpcf7_plugin_path( 'includes/swv/js/index.asset.php' );

		if ( file_exists( $asset_file ) ) {
			$assets = include( $asset_file );
		}

		$assets = wp_parse_args( $assets, array(
			'src' => wpcf7_plugin_url( 'includes/swv/js/index.js' ),
			'dependencies' => array(),
			'version' => WPCF7_VERSION,
			'in_footer' => true,
		) );

		wp_register_script( 'swv',
			$assets['src'],
			$assets['dependencies'],
			$assets['version'],
			$assets['in_footer']
		);
	},
	10, 0
);