📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 22:14:30
📂
/ (Root)
/
home
/
apkbfjox
/
shamapk.com
/
wp-content
/
plugins
/
wp-rocket
/
inc
/
classes
/
subscriber
/
third-party
/
plugins
📍 /home/apkbfjox/shamapk.com/wp-content/plugins/wp-rocket/inc/classes/subscriber/third-party/plugins
🔄 Refresh
✏️
Editing: class-ngg-subscriber.php
Writable
<?php namespace WP_Rocket\Subscriber\Third_Party\Plugins; use WP_Rocket\Event_Management\Subscriber_Interface; defined( 'ABSPATH' ) || exit; /** * Class that handles events related to Next Gen Gallery. * * @since 3.3.1 * @author Remy Perona */ class NGG_Subscriber implements Subscriber_Interface { /** * Return an array of events that this subscriber wants to listen to. * * @since 3.3.1 * @author Remy Perona * * @return array */ public static function get_subscribed_events() { if ( ! class_exists( 'C_NextGEN_Bootstrap' ) ) { return; } return [ 'run_ngg_resource_manager' => 'deactivate_resource_manager', ]; } /** * Deactivate NGG Resource Manager to prevent conflict with WP Rocket output buffering * * @since 3.3.1 * @author Remy Perona * * @param bool $valid_request Indicates if the current request is valid for the NGG resource manager. * * @return bool */ public function deactivate_resource_manager( $valid_request ) { if ( is_admin() ) { return $valid_request; } return false; } }
💾 Save Changes
❌ Cancel