'4036',
'slug' => 'unlimited-elements-for-elementor',
'premium_slug' => 'unlimited-elements-pro',
'type' => 'plugin',
'public_key' => 'pk_719fa791fb45bf1896e3916eca491',
'is_premium' => false,
'premium_suffix' => '(Pro)',
'has_premium_version' => true,
'has_addons' => false,
'has_paid_plans' => true,
'has_affiliation' => false,
'menu' => array(
'slug' => 'unlimitedelements',
'support' => false,
'affiliation' => false,
'contact' => false
)
) );
}
return $unl_fs;
}
// Init Freemius.
unl_fs();
// Signal that SDK was initiated.
do_action( 'unl_fs_loaded' );
}
$mainFilepath = __FILE__;
$currentFolder = dirname($mainFilepath);
$pathProvider = $currentFolder."/provider/";
try{
if(class_exists("GlobalsUC"))
define("UC_BOTH_VERSIONS_ACTIVE", true);
else{
$pathAltLoader = $pathProvider."provider_alt_loader.php";
if(file_exists($pathAltLoader)){
require $pathAltLoader;
}else{
require_once $currentFolder.'/includes.php';
require_once GlobalsUC::$pathProvider."core/provider_main_file.php";
}
}
}catch(Exception $e){
$message = $e->getMessage();
$trace = $e->getTraceAsString();
echo "
";
echo esc_html($message);
echo "
"; print_r($trace); }