HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ubuntu-8gb-hel1-1 6.8.0-55-generic #57-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 12 23:42:21 UTC 2025 x86_64
User: www-data (33)
PHP: 8.1.32
Disabled: NONE
Upload Files
File: /var/www/agighana.org_backup/plugin-class-backward-compatibility.php
<?php 
if ( ! class_exists( 'ElementsKit' ) ) {
	class ElementsKit {
		// for backward compatibility

		const VERSION = '1.5.9';

		const PACKAGE_TYPE = 'pro';

		const PRODUCT_ID = '9';

		const MINIMUM_ELEMENTOR_VERSION = '2.4.0';

		const MINIMUM_PHP_VERSION = '5.6';

		static function api_url() {
			return 'https://api.wpmet.com/public/';
		}

		static function plugin_url() {
			return trailingslashit( plugin_dir_url( __FILE__ ) );
		}

		static function plugin_dir() {
			return trailingslashit( plugin_dir_path( __FILE__ ) );
		}

		static function widget_dir() {
			return self::plugin_dir() . 'widgets/';
		}

		static function widget_url() {
			return self::plugin_url() . 'widgets/';
		}

		static function module_dir() {
			return self::plugin_dir() . 'modules/';
		}

		static function module_url() {
			return self::plugin_url() . 'modules/';
		}

		static function lib_dir() {
			return self::plugin_dir() . 'libs/';
		}

		static function lib_url() {
			return self::plugin_url() . 'libs/';
		}

	}
}