| Server IP : 35.236.43.222 / Your IP : 216.73.216.143 Web Server : Apache System : Linux order-form-vm-001 5.10.0-37-cloud-amd64 #1 SMP Debian 5.10.247-1 (2025-12-11) x86_64 User : deploy ( 1002) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html.old.2026-01-23/wp-content/plugins/independent-analytics/ |
Upload File : |
<?php
/**
* Plugin Name: Independent Analytics
* Plugin URI: https://independentwp.com/
* Description: User-friendly website analytics built for WordPress
* Version: 2.14.0
* Requires at least: 5.9
* Tested up to: 6.9
* Requires PHP: 7.4
* Author: Independent Analytics
* Author URI: https://independentwp.com/
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: independent-analytics
* Domain Path: /languages
*/
if ( !defined( 'ABSPATH' ) ) {
exit;
}
if ( function_exists( 'IAWP_FS' ) ) {
IAWP_FS()->set_basename( false, __FILE__ );
} else {
// DO NOT REMOVE THIS IF, IT IS ESSENTIAL FOR THE `function_exists` CALL ABOVE TO PROPERLY WORK.
if ( !function_exists( 'IAWP_FS' ) ) {
// Create a helper function for easy SDK access.
function IAWP_FS() {
global $ia_fs;
if ( !isset( $ia_fs ) ) {
// Activate multisite network integration.
if ( !defined( 'WP_FS__PRODUCT_9944_MULTISITE' ) ) {
define( 'WP_FS__PRODUCT_9944_MULTISITE', true );
}
// Include Freemius SDK.
require_once dirname( __FILE__ ) . '/freemius/start.php';
$ia_fs = fs_dynamic_init( [
'id' => '9944',
'slug' => 'independent-analytics',
'premium_slug' => 'independent-analytics-pro',
'type' => 'plugin',
'public_key' => 'pk_c228acaa28759b55d58766b1076d4',
'is_premium' => false,
'premium_suffix' => 'Pro',
'has_addons' => false,
'has_paid_plans' => true,
'menu' => [
'slug' => 'independent-analytics',
'contact' => false,
'support' => false,
'pricing' => false,
],
'is_live' => true,
] );
}
return $ia_fs;
}
// Init Freemius.
IAWP_FS();
// Signal that SDK was initiated.
do_action( 'ia_fs_loaded' );
}
// ... Your plugin's main file logic ...
require_once rtrim( plugin_dir_path( __FILE__ ), DIRECTORY_SEPARATOR ) . '/iawp-bootstrap.php';
}