| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/stirizo/wp-content/plugins/widgetkit-for-elementor/includes/ |
Upload File : |
<?php
class WKFE_Appsero_Init{
private static $instance = null;
public static function init(){
if(null === self::$instance ){
self::$instance = new self;
}
return self::$instance;
}
public function __construct(){
$this->appsero_tracker_init();
}
/**
* Initialize the appsero plugin tracker
*
* @return void
*/
protected function appsero_tracker_init() {
if ( ! class_exists( 'Appsero\Client' ) ) {
require_once WK_PATH . '/vendor/appsero/client/src/Client.php';
}
if (! class_exists('Appsero\Updater')) {
require_once WK_PATH . '/vendor/appsero/updater/src/Updater.php';
}
$client = new Appsero\Client( '91bf222e-d4ce-4fdb-97dc-30a95fa0bff7', 'Widgetkit For Elementor', WK_FILE );
$client->insights()->init();
}
}
?>