![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/wp-rocket/inc/Engine/Preload/ |
<?php namespace WP_Rocket\Engine\Preload; use WP_Rocket\Dependencies\League\Container\ServiceProvider\AbstractServiceProvider; /** * Service provider for the WP Rocket preload. * * @since 3.3 */ class ServiceProvider extends AbstractServiceProvider { /** * The provides array is a way to let the container * know that a service is provided by this service * provider. Every service that is registered via * this service provider must have an alias added * to this array or it will be ignored. * * @var array */ protected $provides = [ 'full_preload_process', 'partial_preload_process', 'homepage_preload', 'sitemap_preload', 'preload_subscriber', 'sitemap_preload_subscriber', 'partial_preload_subscriber', 'fonts_preload_subscriber', ]; /** * Registers the subscribers in the container * * @since 3.3 * * @return void */ public function register() { $this->getContainer()->add( 'full_preload_process', FullProcess::class ); $this->getContainer()->add( 'partial_preload_process', PartialProcess::class ); $full_preload_process = $this->getContainer()->get( 'full_preload_process' ); $this->getContainer()->add( 'homepage_preload', Homepage::class ) ->addArgument( $full_preload_process ); $this->getContainer()->add( 'sitemap_preload', Sitemap::class ) ->addArgument( $full_preload_process ); // Subscribers. $options = $this->getContainer()->get( 'options' ); $this->getContainer()->share( 'preload_subscriber', PreloadSubscriber::class ) ->addArgument( $this->getContainer()->get( 'homepage_preload' ) ) ->addArgument( $options ) ->addTag( 'common_subscriber' ); $this->getContainer()->share( 'sitemap_preload_subscriber', SitemapPreloadSubscriber::class ) ->addArgument( $this->getContainer()->get( 'sitemap_preload' ) ) ->addArgument( $options ) ->addTag( 'common_subscriber' ); $this->getContainer()->share( 'partial_preload_subscriber', PartialPreloadSubscriber::class ) ->addArgument( $this->getContainer()->get( 'partial_preload_process' ) ) ->addArgument( $options ) ->addTag( 'common_subscriber' ); $this->getContainer()->share( 'fonts_preload_subscriber', Fonts::class ) ->addArgument( $options ) ->addArgument( $this->getContainer()->get( 'cdn' ) ) ->addTag( 'common_subscriber' ); } }