Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
unlimited-elements-for-elementor
/
provider
/
core
:
provider_main_file.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php try{ //------------------------------------------------------------- //load core plugins $pathCorePlugins = dirname(__FILE__)."/"; $pathUnlimitedElementsPlugin = $pathCorePlugins."unlimited_elements/plugin.php"; require_once $pathUnlimitedElementsPlugin; $pathCreateAddonsPlugin = $pathCorePlugins."create_addons/plugin.php"; require_once $pathCreateAddonsPlugin; if(is_admin() || (defined('WP_CLI') && WP_CLI) ){ //load admin part do_action(GlobalsProviderUC::ACTION_RUN_ADMIN); }else{ //load front part do_action(GlobalsProviderUC::ACTION_RUN_FRONT); } }catch(Exception $e){ $message = $e->getMessage(); $trace = $e->getTraceAsString(); uelm_echo( "Error: <b>".$message."</b>"); if(GlobalsUC::$SHOW_TRACE == true) dmp($trace); }