SILENT KILLERPanel

Current Path: > home > > transcarter > > > > www > wp-content > plugins > protect-uploads > includes


Operation   : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Software     : Apache
Server IP    : 198.54.126.42 | Your IP: 216.73.216.135
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home//transcarter////www/wp-content/plugins/protect-uploads/includes

NameTypeSizeLast ModifiedActions
class-protect-uploads-activator.php File 112 bytes August 01 2025 16:16:02.
class-protect-uploads-deactivator.php File 313 bytes August 01 2025 16:16:02.
class-protect-uploads-i18n.php File 684 bytes August 01 2025 16:16:02.
class-protect-uploads-loader.php File 4434 bytes August 01 2025 16:16:02.
class-protect-uploads.php File 1875 bytes August 01 2025 16:16:02.
index.php File 26 bytes August 01 2025 16:16:02.

Reading File: /home//transcarter////www/wp-content/plugins/protect-uploads/includes/class-protect-uploads.php

<?php

class Alti_ProtectUploads
{

	protected $version;
	protected $plugin_name;
	protected $loader;

	public function __construct()
	{
		$this->version = '0.4';
		$this->plugin_name = 'protect-uploads';
		$this->load_dependencies();
		$this->set_locale();
		$this->define_admin_hooks();
	}

	private function load_dependencies()
	{

		require_once plugin_dir_path(dirname(__FILE__)) . 'includes/class-protect-uploads-loader.php';
		require_once plugin_dir_path(dirname(__FILE__)) . 'includes/class-protect-uploads-i18n.php';
		require_once plugin_dir_path(dirname(__FILE__)) . 'admin/class-protect-uploads-admin.php';

		$this->loader = new Alti_ProtectUploads_Loader();
	}

	/**
	 * set locale for translation ends.
	 */
	private function set_locale()
	{

		$plugin_i18n = new Alti_ProtectUploads_i18n();
		$plugin_i18n->set_domain($this->get_plugin_name());

		$this->loader->add_action('plugins_loaded', $plugin_i18n, 'load_plugin_textdomain');
	}

	/**
	 * action and filter for admin side
	 */
	private function define_admin_hooks()
	{

		$plugin_admin = new Alti_ProtectUploads_Admin($this->get_plugin_name(), $this->get_version());

		$this->loader->add_action('admin_menu', $plugin_admin, 'add_submenu_page');
		$this->loader->add_action('admin_init', $plugin_admin, 'verify_settings_page');
		$this->loader->add_filter('plugin_action_links_' . $this->get_plugin_name() . '/' . $this->get_plugin_name() . '.php', $plugin_admin, 'add_settings_link');
		$this->loader->add_action('admin_enqueue_scripts', $plugin_admin, 'enqueue_styles');
	}

	public function run()
	{
		$this->loader->run();
	}

	public function get_plugin_name()
	{
		return $this->plugin_name;
	}

	public function get_loader()
	{
		return $this->loader;
	}

	public function get_version()
	{
		return $this->version;
	}
}

SILENT KILLER Tool