Σ(゚Д゚;≡;゚д゚)Σ(゚Д゚;≡;゚д゚)Σ(゚Д゚;≡;゚д゚)始,故人唐宰相鲁公,🆚开府南服,余以布衣从戎。明年,别公漳水湄。后明年,公以事过张睢阳庙及颜杲卿所尝往来处,悲歌慷慨,卒不负其言而从之游。今其诗具在,可考也。😭 HEX
HEX
Server: Apache
System: Linux webm006.cluster120.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
User: studionolh (122383)
PHP: 7.3.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/studionolh/www/wp-content/plugins/foobox-image-lightbox/compatibility/class-wprocket.php
<?php

if ( ! class_exists( 'foobox_compatibilty_wprocket' ) ) {

	class foobox_compatibilty_wprocket {

		public function __construct() {
			add_action( 'plugins_loaded', array( $this, 'init' ) );
		}

		function init() {
			if ( defined( 'WP_ROCKET_VERSION') ) {
				add_filter( 'rocket_excluded_inline_js_content', array( $this, 'add_foobox_to_excluded_inline_js' ) );
				add_filter( 'rocket_delay_js_scripts', array( $this, 'remove_allowed_keywords' ) );
				add_filter( 'rocket_defer_inline_exclusions', array( $this, 'add_foobox_to_defer_inline_exclusions') );
			}
		}

		function add_foobox_to_defer_inline_exclusions( $regex ) {
			return $regex . '|FOOBOX';
		}

		function remove_allowed_keywords( $delay_js_scripts ) {
			if ( is_array( $delay_js_scripts ) ) {
				//these defaults are causing FooBox script to be delayed, which breaks FooBox
				$ga_search = array_search( "ga( '", $delay_js_scripts );
				if ( $ga_search !== false ) {
					unset( $delay_js_scripts[ $ga_search ] );
				}
				
				$ga_search2 = array_search( "ga('", $delay_js_scripts );
				if ( $ga_search2 !== false ) {
					unset( $delay_js_scripts[ $ga_search2 ] );
				}
			}

			return $delay_js_scripts;
		}

		function add_foobox_to_excluded_inline_js( $excluded_inline ) {
			if ( is_array( $excluded_inline ) ) {
				$excluded_inline[] = 'FOOBOX';
			}

			return $excluded_inline;
		}
	}
}