| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/rocket-lazy-load/src/ |
Upload File : |
<?php
/**
* Initialize and load the plugin
*
* @package RocketLazyloadPlugin
*/
namespace RocketLazyLoadPlugin;
use RocketLazyLoadPlugin\Dependencies\League\Container\Container;
use RocketLazyLoadPlugin\EventManagement\EventManager;
use RocketLazyLoadPlugin\Options\Options;
/**
* Plugin initialize
*
* @since 2.0
* @author Remy Perona
*/
class Plugin
{
/**
* Is the plugin loaded
*
* @since 2.0
* @author Remy Perona
*
* @var boolean
*/
private $loaded = false;
/**
* Checks if the plugin is loaded
*
* @since 2.0
* @author Remy Perona
*
* @return boolean
*/
private function isLoaded()
{
return $this->loaded;
}
/**
* Loads the plugin in WordPress
*
* @since 2.0
* @author Remy Perona
*
* @return void
*/
public function load()
{
if ($this->isLoaded()) {
return;
}
$container = new Container();
$container->add('template_path', ROCKET_LL_PATH . 'views/');
$container->add('plugin_basename', ROCKET_LL_BASENAME);
$container->add('options', function () {
return new Options('rocket_lazyload');
});
$container->add('event_manager', function () {
return new EventManager();
});
$service_providers = [
'RocketLazyLoadPlugin\ServiceProvider\OptionServiceProvider',
'RocketLazyLoadPlugin\ServiceProvider\AdminServiceProvider',
'RocketLazyLoadPlugin\ServiceProvider\ImagifyNoticeServiceProvider',
'RocketLazyLoadPlugin\ServiceProvider\LazyloadServiceProvider',
'RocketLazyLoadPlugin\ServiceProvider\SubscribersServiceProvider',
];
foreach ($service_providers as $service) {
$container->addServiceProvider($service);
}
$subscribers = [
'RocketLazyLoadPlugin\Subscriber\ThirdParty\AMPSubscriber',
'RocketLazyLoadPlugin\Subscriber\AdminPageSubscriber',
'RocketLazyLoadPlugin\Subscriber\ImagifyNoticeSubscriber',
'RocketLazyLoadPlugin\Subscriber\LazyloadSubscriber',
];
foreach ($subscribers as $subscriber) {
$container->get('event_manager')->addSubscriber($container->get($subscriber));
}
$this->loaded = true;
}
}