Server IP : 104.21.93.192 / Your IP : 216.73.216.73 Web Server : LiteSpeed System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : redwjova ( 1790) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/redwjova/sort.llc/wp-content/plugins/malcare-security/protect/ |
Upload File : |
<?php if (!defined('ABSPATH') && !defined('MCDATAPATH')) exit; if (!class_exists('MCProtectLogger_V602')) : require_once dirname( __FILE__ ) . '/logger/fs.php'; require_once dirname( __FILE__ ) . '/logger/db.php'; class MCProtectLogger_V602 { private $log_destination; const TYPE_FS = 0; const TYPE_DB = 1; function __construct($name, $type = MCProtectLogger_V602::TYPE_DB) { if ($type == MCProtectLogger_V602::TYPE_FS) { $this->log_destination = new MCProtectLoggerFS_V602($name); } else { $this->log_destination = new MCProtectLoggerDB_V602($name); } } public function log($data) { $this->log_destination->log($data); } } endif;