/home/arranoyd/magicraft/wp-content/plugins/wp-rocket/inc/front/deferred-js.php
<?php
defined( 'ABSPATH' ) or	die( 'Cheatin&#8217; uh?' );

/**
 * Remove tags of deferred JavaScript files
 *
 * @since 1.3.0 This process is called via the new filter rocket_buffer
 * @since 1.1.0
 */
add_filter( 'rocket_buffer', 'rocket_exclude_deferred_js', 11 );
function rocket_exclude_deferred_js( $buffer ) {
	// Get all JS files with this regex
	preg_match_all( '#<script.*src=[\'|"]([^\'|"]+\.js?.+)[\'|"].*></script>#iU', $buffer, $tags_match );

	if ( isset( $tags_match[0] ) ) {
	    foreach ( $tags_match[0] as $i => $tag ) {
			// Strip query args.
			$url = strtok( $tags_match[1][$i] , '?' );

			/**
			 * Filter list of Deferred JavaScript files
			 *
			 * @since 1.1.0
			 *
			 * @param array List of Deferred JavaScript files
			 */
			$deferred_js_files = apply_filters( 'rocket_minify_deferred_js', get_rocket_option( 'deferred_js_files' ) );

			// Check if this file is deferred loading
			if ( in_array( $url, $deferred_js_files ) ) {
				$buffer = str_replace( $tag, '', $buffer );
			}
		}
    }

	return $buffer;
}

/**
 * Insert LABjs deferred process in footer
 *
 * @since 1.1.0
 */
add_action( 'wp_footer', 'rocket_insert_deferred_js', PHP_INT_MAX );
function rocket_insert_deferred_js( $buffer ) {
	// @since 2.7: Don't add anything on POST requests, if DONOTCACHEPAGE exists
	// 			   and logged in users if the "Logged in user cache" option isn't activated
	// Don't add anything on 404 page or on a page without these query strings
	if ( is_404()
		 || ! empty( $_POST )
		 || ( defined( 'DONOTCACHEPAGE' ) && DONOTCACHEPAGE )
		 || ( is_user_logged_in() && ! get_rocket_option( 'cache_logged_user', 0 ) )
		 || ( ! empty( $_GET )
			  && ( ! isset( $_GET['utm_source'], $_GET['utm_medium'], $_GET['utm_campaign'] ) )
			  && ( ! isset( $_GET['fb_action_ids'], $_GET['fb_action_types'], $_GET['fb_source'] ) )
			  && ( ! isset( $_GET['gclid'] ) )
			  && ( ! isset( $_GET['permalink_name'] ) )
			  && ( ! isset( $_GET['lp-variation-id'] ) )
			  && ( ! isset( $_GET['lang'] ) )
			)
	) {
		return;
	}

	/**
	 * Filter LABjs file URL
	 *
	 * @since 1.1.0
	 *
	 * @param string LABjs file URL
	 */
	$labjs_src = WP_ROCKET_FRONT_JS_URL . 'LAB.' . WP_ROCKET_LAB_JS_VERSION . '.min.js';
	$labjs_src = get_rocket_cdn_url( $labjs_src, array( 'all', 'css_js', 'js' ) );
	$labjs_src = apply_filters( 'rocket_labjs_src', $labjs_src );

	/**
	 * Filter list of LABjs options
	 *
	 * @since 1.1.0
	 *
	 * @param array List of LABjs options
	 */
	$labjs_options = apply_filters( 'rocket_labjs_options', array( 'AlwaysPreserveOrder' => true ) );

	/**
	 * Filter list of Deferred JavaScript files waiting to load
	 *
	 * @since 1.1.0
	 *
	 * @param array List of Deferred JavaScript files waiting to load
	 */
	$deferred_js_wait  = apply_filters( 'rocket_minify_deferred_js_wait', get_rocket_option( 'deferred_js_wait' ) );

	$defer  = '<script src="' . $labjs_src . '" data-no-minify="1"></script>';
	$defer .= '<script>';
	$defer .= '$LAB';

	// Set LABjs options
	// All options is available in http://labjs.com/documentation.php#optionsobject
	if ( count( $labjs_options ) ) {
		$defer .= '.setOptions(' . json_encode( $labjs_options ) . ')';
	}

	$deferred_js_files = get_rocket_deferred_js_files();

	foreach ( $deferred_js_files as $k => $js ) {
		$wait 	= $deferred_js_wait[$k] == '1' ? '.wait(' . esc_js( apply_filters( 'rocket_labjs_wait_callback', false, $js ) ) . ')' : '';
		$defer .= '.script("' . esc_js( $js ) . '")' . $wait;
	}

	$defer .= ';</script>';
	echo $defer;
}