403Webshell
Server IP : 162.0.217.223  /  Your IP : 216.73.216.150
Web Server : LiteSpeed
System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : mypckeys ( 1539)
PHP Version : 8.1.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/mypckeys/yeslicense.org/wp-content/plugins/resmushit-image-optimizer/classes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/mypckeys/yeslicense.org/wp-content/plugins/resmushit-image-optimizer/classes/Plugin.php
<?php
namespace Resmush;

use \Resmush\ShortPixelLogger\ShortPixelLogger as Log;

use \Resmush\Controller\AdminController as AdminController;
use \Resmush\Controller\AjaxController as AjaxController;
use \Resmush\Controller\CronController as CronController;
use \Resmush\Controller\ProcessController as ProcessController;


use Resmush\FileSystem\Controller\FileSystemController as FileSystem;



if (! defined('ABSPATH')) {
    exit; // Exit if accessed directly.
}


// One day the basis of it all.
class Plugin
{

    protected static $instance;

    public function __construct()
    {
        // Regulare init after wp is loaded. This is fairly late.
        add_action('wp_loaded', array($this, 'init'));
    }

    public static function getInstance()
    {
      if (is_null(self::$instance))
       self::$instance = new Plugin();

      return self::$instance;
    }

    public function init()
    {
        $this->initHooks();

        // All hooks init
        AjaxController::getInstance();
        AdminController::getInstance();
        CronController::getInstance();
        ProcessController::getInstance();
    }


    public function initHooks()
    {

    }

    public function fs()
    {
      return new FileSystem();
    }

    public function process()
    {
       return ProcessController::getInstance();
    }

    public static function checkLogger()
    {
      $log = Log::getInstance();
      if (Log::debugIsActive()) // upload dir can be expensive, so only do this when log is actually active.
      {
        $uploaddir = wp_upload_dir(null, false, false);
        if (isset($uploaddir['basedir']))
        {
          $log->setLogPath($uploaddir['basedir'] . "/resmushit.log");
        }
      }
    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit