PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/tiktechtok.org/wp-content/plugins/wp-rocket/inc/classes/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/tiktechtok.org/wp-content/plugins/wp-rocket/inc/classes/class-plugin.php |
<?php namespace WP_Rocket; use League\Container\Container; use WP_Rocket\Event_Management\Event_Manager; use WP_Rocket\Admin\Options; defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' ); /** * Assembly class */ class Plugin { /** * Instance of Container class * * @since 3.3 * * @var Container instance */ private $container; /** * Constructor * * @since 3.0 * * @param string $template_path Path to the views. */ public function __construct( $template_path ) { $this->container = new Container(); $container = $this->container; add_filter( 'rocket_container', function() use ( $container ) { return $container; } ); $this->container->add( 'template_path', $template_path ); } /** * Loads the plugin into WordPress * * @since 3.0 * * @return void */ public function load() { $this->container->share( 'event_manager', function() { return new Event_Manager(); } ); $this->container->add( 'options_api', function() { return new Options( 'wp_rocket_' ); } ); $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Options' ); $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Database' ); $subscribers = []; if ( is_admin() ) { if ( ! \Imagify_Partner::has_imagify_api_key() ) { $imagify = new \Imagify_Partner( 'wp-rocket' ); $imagify->init(); remove_action( 'imagify_assets_enqueued', 'imagify_dequeue_sweetalert_wprocket' ); } $this->container->add( 'settings_page_config', [ 'slug' => WP_ROCKET_PLUGIN_SLUG, 'title' => WP_ROCKET_PLUGIN_NAME, 'capability' => apply_filters( 'rocket_capacity', 'manage_options' ), ] ); $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Beacon' ); $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Settings' ); $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Admin_Subscribers' ); $subscribers = [ 'beacon_subscriber', 'settings_page_subscriber', 'deactivation_intent_subscriber', 'hummingbird_subscriber', ]; } elseif ( \rocket_valid_key() ) { $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Optimization_Subscribers' ); $subscribers = [ 'buffer_subscriber', 'ie_conditionals_subscriber', 'minify_html_subscriber', 'combine_google_fonts_subscriber', 'minify_css_subscriber', 'minify_js_subscriber', 'cache_dynamic_resource_subscriber', 'cdn_favicons_subscriber', 'remove_query_string_subscriber', ]; // Don't insert the LazyLoad file if Rocket LazyLoad is activated. if ( ! rocket_is_plugin_active( 'rocket-lazy-load/rocket-lazy-load.php' ) ) { $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Lazyload' ); $subscribers[] = 'lazyload_subscriber'; } } $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Addons_Subscribers' ); $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Preload_Subscribers' ); $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Common_Subscribers' ); $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Third_Party_Subscribers' ); $this->container->addServiceProvider( 'WP_Rocket\ServiceProvider\Hostings_Subscribers' ); $common_subscribers = [ 'critical_css_subscriber', 'sucuri_subscriber', 'facebook_tracking_subscriber', 'google_tracking_subscriber', 'preload_subscriber', 'sitemap_preload_subscriber', 'partial_preload_subscriber', 'heartbeat_subscriber', 'db_optimization_subscriber', 'mobile_subscriber', 'woocommerce_subscriber', 'pressable_subscriber', 'syntaxhighlighter_subscriber', 'elementor_subscriber', 'bridge_subscriber', 'ngg_subscriber', 'cache_dir_size_check_subscriber', ]; $subscribers = array_merge( $subscribers, $common_subscribers ); foreach ( $subscribers as $subscriber ) { $this->container->get( 'event_manager' )->add_subscriber( $this->container->get( $subscriber ) ); } } }