HEX
Server: LiteSpeed
System: Linux s1296.sgp1.mysecurecloudhost.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: bishwesh (1878)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/bishwesh/public_html/wp-content/plugins/file-manager/inc/class.logger.php
<?php
// Handles all the logging
if(!class_exists('FMLogger')):
class FMLogger{
	private $table_name;

	function __construct(){
		global $wpdb;
		$this->table_name = $wpdb->table_prefix . "fm_log"; 
	}

	function insert($operation, $file_path){
		global $wpdb;
		$wpdb->insert($this->table_name, array(
			'user_id' => get_current_user_id(),
			'operation_id' => $operation,
			'file_path' => $file_path,
			'time' => current_time('mysql'),
		));
	}
}
endif;