HEX
Server: Apache
System: Linux dotw660 5.10.0-37-amd64 #1 SMP Debian 5.10.247-1 (2025-12-11) x86_64
User: web350 (1012)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/clients/client125/web350/web/wp-content/plugins/js_composer/modules/custom-js/module.php
<?php
/*
 * Module Name: Custom JS
 * Description: Allow implement custom JS code to the whole site and individual pages.
 *
 * @since 7.7
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
}

/**
 * Module entry point.
 * @since 7.7
 */

require_once vc_manager()->path( 'MODULES_DIR', 'custom-js/class-vc-custom-js-module-settings.php' );

class Vc_Custom_Js_Module
{
	/**
	 * Settings object.
	 *
	 * @var Vc_Custom_Js_Module_Settings
	 */
	public $settings;

	/**
	 * Init module implementation.
	 *
	 * @since 7.7
	 */
	public function init() {
		$this->settings = new Vc_Custom_Js_Module_Settings();
		$this->settings->init();

		add_action( 'vc_build_page', [$this, 'output_custom_js_to_page'] );

		add_filter( 'vc_post_meta_list', [$this, 'add_custom_meta_to_update'] );

		add_filter( 'wpb_set_post_custom_meta', [$this, 'set_post_custom_meta'], 10, 2 );
	}

	/**
	 * Add custom js to page.
	 *
	 * since 7.7
	 */
	public function output_custom_js_to_page() {
		add_filter( 'print_head_scripts', array(
			$this,
			'output_post_header_custom_js',
		), 90 );
		add_filter( 'wp_print_footer_scripts', array(
			$this,
			'output_post_footer_custom_js',
		), 90 );
		add_filter( 'print_head_scripts', array(
			$this,
			'output_global_header_custom_html',
		), 100 );
		add_filter( 'wp_print_footer_scripts', array(
			$this,
			'output_global_footer_custom_html',
		), 100 );
	}

	/**
	 * Add post custom html to the header tag of the page.
	 *
	 * @since 7.0
	 */
	public function output_post_header_custom_js() {
		$id = wpb_get_post_id_for_custom_output();

		if ( ! $id ) {
			return;
		}

		$post_header_html = get_post_meta( $id, '_wpb_post_custom_js_header', true );

		if ( empty( $post_header_html ) ) {
			return;
		}

		$this->output_custom_js( $post_header_html, 'header' );
	}

	/**
	 * Add post custom html to the footer tag of the page.
	 *
	 * @since 7.0
	 */
	public function output_post_footer_custom_js() {
		$id = wpb_get_post_id_for_custom_output();

		if ( ! $id ) {
			return;
		}

		$post_footer_html = get_post_meta( $id, '_wpb_post_custom_js_footer', true );

		if ( empty( $post_footer_html ) ) {
			return;
		}

		$this->output_custom_js( $post_footer_html, 'footer' );
	}

	/**
	 * Output custom on a page.
	 *
	 * @since 7.0
	 * @param string $js
	 * @param string $area
	 */
	public function output_custom_js( $js, $area ) {
		echo '<script data-type="vc_custom-js-"' . esc_attr( $area ) . '>';
		// we need to wait for iframe load on frontend editor side.
		if ( vc_is_page_editable() ) {
			echo 'setTimeout(() => {';
            // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
			echo wp_unslash( $js );
			echo '}, 2000);';
		} else {
            // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
			echo wp_unslash( $js );
		}
		echo '</script>';
	}

	/**
	 * Add custom html to the header tag of the page.
	 *
	 * @since 7.7
	 */
	public function output_global_header_custom_html() {
		$global_header_html = get_option( Vc_Settings::$field_prefix . 'custom_js_header' );

		echo '<script>';
		// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		echo wp_unslash( $global_header_html );
		echo '</script>';
	}

	/**
	 * Add custom html to the footer tag of the page.
	 *
	 * @since 7.7
	 */
	public function output_global_footer_custom_html() {
		$global_footer_html = get_option( Vc_Settings::$field_prefix . 'custom_js_footer' );

		echo '<script>';
        // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		echo wp_unslash( $global_footer_html );
		echo '</script>';
	}

	/**
	 * Add custom js to the plugin post custom meta list.
	 *
	 * @param array $meta_list
	 * @return array
	 */
	public function add_custom_meta_to_update( $meta_list ) {
		$meta_list[] = 'custom_js_header';
		$meta_list[] = 'custom_js_footer';

		return $meta_list;
	}

	/**
	 * Set post custom meta.
	 *
	 * @param array $post_custom_meta
	 * @param WP_Post $post
	 * @return array
	 */
	public function set_post_custom_meta( $post_custom_meta, $post ) {
		$post_custom_meta['post_custom_js_header'] = get_post_meta( $post->ID, '_wpb_post_custom_js_header', true );
		$post_custom_meta['post_custom_js_footer'] = get_post_meta( $post->ID, '_wpb_post_custom_js_footer', true );

		return $post_custom_meta;
	}
}