SILENT KILLERPanel

Current Path: > home > > transcarter > public_html > wp-content > > plugins > elementor > app > modules > > import-export > >


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/public_html/wp-content//plugins/elementor/app/modules//import-export//

NameTypeSizeLast ModifiedActions
compatibility Directory - -
processes Directory - -
runners Directory - -
module.php File 32866 bytes July 17 2025 21:06:22.
usage.php File 1037 bytes July 17 2025 21:06:22.
utils.php File 3742 bytes July 17 2025 21:06:22.
wp-cli.php File 8123 bytes July 17 2025 21:06:22.

Reading File: /home//transcarter/public_html/wp-content//plugins/elementor/app/modules//import-export///usage.php

<?php

namespace Elementor\App\Modules\ImportExport;

use Elementor\App\Modules\ImportExport\Processes\Revert;

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

class Usage {

	/**
	 * Register hooks.
	 *
	 * @return void
	 */
	public function register() {
		add_filter( 'elementor/tracker/send_tracking_data_params', function ( array $params ) {
			$params['usages']['import_export']['revert'] = $this->get_revert_usage_data();

			return $params;
		} );
	}

	/**
	 * Get the Revert usage data.
	 *
	 * @return array
	 */
	private function get_revert_usage_data() {
		$revert_sessions = ( new Revert() )->get_revert_sessions();

		$data = [];

		foreach ( $revert_sessions as $revert_session ) {
			$data[] = [
				'kit_name' => $revert_session['kit_name'],
				'source' => $revert_session['source'],
				'revert_timestamp' => (int) $revert_session['revert_timestamp'],
				'total_time' => ( (int) $revert_session['revert_timestamp'] - (int) $revert_session['import_timestamp'] ),
			];
		}

		return $data;
	}
}

SILENT KILLER Tool