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 ) ;
}
}