SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > forminator > library > mixpanel > >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins/forminator/library/mixpanel//

NameTypeSizeLast ModifiedActions
class-event.php File 1099 bytes March 03 2025 16:08:12.
class-general.php File 2645 bytes March 03 2025 16:08:12.
class-mixpanel.php File 8107 bytes March 17 2025 17:29:02.
class-modules.php File 15037 bytes March 03 2025 16:08:12.
class-notifications.php File 3232 bytes March 03 2025 16:08:12.
class-settings.php File 5860 bytes July 14 2025 15:42:34.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/forminator/library/mixpanel///class-event.php

<?php
/**
 * The Events class.
 *
 * @package Forminator
 */

/**
 * Abstract class for Mixpanel Events.
 */
abstract class Events {

	/**
	 * Initialize class.
	 *
	 * @since 1.27.0
	 */
	public static function init() {
	}

	/**
	 * Get mixpanel instance.
	 *
	 * @return Mixpanel
	 *
	 * @since 1.27.0
	 */
	protected static function tracker() {
		return Forminator_Mixpanel::get_instance()->tracker();
	}

	/**
	 * Tracking event
	 *
	 * @param string $event Event.
	 * @param array  $properties Properties.
	 *
	 * @return void
	 *
	 * @since 1.27.0
	 */
	public static function track_event( $event, $properties ) {
		self::tracker()->track(
			$event,
			$properties
		);
	}

	/**
	 * Fetch Settings value
	 *
	 * @param array  $settings Settings.
	 * @param string $key Key name.
	 * @param string $value Value.
	 *
	 * @return string|void
	 * @since 1.27.0
	 */
	protected static function settings_value( $settings, $key, $value = '' ) {
		if ( empty( $settings ) ) {
			return;
		}

		if ( ! empty( $settings[ $key ] ) ) {
			return esc_html( $settings[ $key ] );
		}

		return $value;
	}
}

SILENT KILLER Tool