HEX
Server: LiteSpeed
System: Linux bq-e808 5.14.0-503.23.2.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 12 05:52:18 EST 2025 x86_64
User: memecom (1010)
PHP: 8.2.27
Disabled: NONE
Upload Files
File: /home/memecom/domains/me3me.com/public_html/wp-content/plugins/doubly-pro/doubly-pro.php
<?php

/*
Plugin Name: Doubly Pro
Plugin URI: http://doubly.pro
Description: Copy, Paste, Export, Import, Export everything between domains - posts / bulk posts / elementor sections 
Author: Unlimited Elements
Version: 1.0.37

Update URI: https://api.freemius.com
*/
if ( !defined( "DOUBLY_INC" ) ) {
    define( "DOUBLY_INC", true );
}

if ( defined( "DOUBLY_VERSION" ) ) {
    if ( !defined( "DOUBLY_BOTH_VERSIONS_INSTALLED" ) ) {
        define( "DOUBLY_BOTH_VERSIONS_INSTALLED", true );
    }
} else {
    define( "DOUBLY_VERSION", "1.0.37" );
    $mainFilepath = __FILE__;
    $currentFolder = dirname( $mainFilepath );
    try {
        require_once $currentFolder . '/includes.php';
        
        if ( GlobalsDOUBLY::$isAdmin == true ) {
            new Doubly_PluginAdmin();
        } else {
            new Doubly_PluginFront();
        }
    
    } catch ( Exception $e ) {
        $message = $e->getMessage();
        echo  esc_html( $message ) ;
    }
}