PATH:
home
/
lab2454c
/
equitablegold.com
/
wp-content
/
plugins
/
unlimited-elements-for-elementor
/
inc_php
<?php /** * @package Unlimited Elements * @author unlimited-elements.com * @copyright (C) 2021 Unlimited Elements, All Rights Reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html * */ defined('UNLIMITED_ELEMENTS_INC') or die('Restricted access'); class GlobalsUC{ public static $inDev = false; public static $debugAjaxErrors = false; public static $SHOW_TRACE = false; public static $SHOW_TRACE_FRONT = false; const ENABLE_TRANSLATIONS = false; const PLUGIN_TITLE = "Unlimited Elements"; const PLUGIN_NAME = "unlimitedelements"; const TABLE_ADDONS_NAME = "addonlibrary_addons"; const TABLE_LAYOUTS_NAME = "addonlibrary_layouts"; const TABLE_CATEGORIES_NAME = "addonlibrary_categories"; const TABLE_CHANGELOG_NAME = "addonlibrary_changelog"; const TABLE_FORM_ENTRIES_NAME = "ue_form_entries"; const TABLE_FORM_ENTRY_FIELDS_NAME = "ue_form_entry_fields"; const VIEW_ADDONS_LIST = "addons"; const VIEW_DEVIDERS_LIST = "deviders"; const VIEW_SHAPES_LIST = "shapes"; const VIEW_EDIT_ADDON = "addon"; const VIEW_ASSETS = "assets"; const VIEW_SETTINGS = "settings"; const VIEW_TEST_ADDON = "testaddon"; const VIEW_ADDON_DEFAULTS = "addondefaults"; const VIEW_MEDIA_SELECT = "mediaselect"; const VIEW_LAYOUTS_LIST = "layouts"; const VIEW_LAYOUT = "layout_outer"; const VIEW_LAYOUT_IFRAME = "layout"; const VIEW_LAYOUT_PREVIEW = "layout_preview"; const VIEW_TEMPLATES_LIST = "templates"; const VIEW_LIBRARY = "library"; const VIEW_LICENSE = "license"; const VIEW_LAYOUTS_SETTINGS = "layouts_settings"; const DEFAULT_JPG_QUALITY = 81; const THUMB_WIDTH = 300; const THUMB_WIDTH_LARGE = 700; const THUMB_SIZE_NORMAL = "size_normal"; const THUMB_SIZE_LARGE = "size_large"; const DIR_THUMBS = "blox_thumbs"; const DIR_SCREENSHOTS = "blox_screenshots"; const DIR_THUMBS_ELFINDER = "elfinder_tmb"; const DIR_THEME_ADDONS = "ue_widgets"; const URL_API = "https://api.unlimited-elements.com/index.php"; //const URL_API = "http://api.bloxbuilder.me/index.php"; const URL_SITE = "https://unlimited-elements.com/"; const URL_WIDGETS = "https://unlimited-elements.com/elementor-widgets/"; const URL_BUY = "https://unlimited-elements.com/pricing/"; const URL_BLOG = "https://unlimited-elements.com/category/blog/"; const URL_DOCS = "https://unlimited-elements.com/docs/"; const URL_DOUBLY = "https://unlimited-elements.com/live-copy-paste/"; const URL_FEATURES = "https://unlimited-elements.com/features/"; const URL_SUPPORT = "http://unitecms.ticksy.com"; const URL_DOWNLOAD_PRO = "https://users.freemius.com/login"; const URL_PREVIEW_WIDGETS = "https://unlimited-elements.com/"; const URL_RATE = "https://wordpress.org/support/plugin/unlimited-elements-for-elementor/reviews/?filter=5"; const URL_FACEBOOK = "https://facebook.com/groups/468327430642626"; const URL_YOUTUBE = "https://youtube.com/channel/UCNYLnevs1ewIxKQqPiat0xQ"; const ADDON_TYPE_REGULAR_ADDON = "regular_addon"; const ADDON_TYPE_ELEMENTOR = "elementor"; const ADDON_TYPE_SHAPE_DEVIDER = "shape_devider"; const ADDON_TYPE_SHAPES = "shapes"; const ADDON_TYPE_REGULAR_LAYOUT = "layout"; const ADDON_TYPE_LAYOUT_SECTION = "layout_section"; const ADDON_TYPE_LAYOUT_PAGE_TEMPLATE = "page_template"; const ADDON_TYPE_LAYOUT_GENERAL = "layout_general"; const ADDON_TYPE_BGADDON = "bg_addon"; const LAYOUT_TYPE_HEADER = "header"; const LAYOUT_TYPE_FOOTER = "footer"; const VALUE_EMPTY_ARRAY = "[[uc_empty_array]]"; const LINK_TWIG = "https://twig.symfony.com/doc/2.x/templates.html"; const ENABLE_CATALOG_SHORTPIXEL = true; const SHORTPIXEL_PREFIX = "https://cdn.shortpixel.ai/spai/q_glossy+w_323+to_auto+ret_img/"; public static $permisison_add = false; public static $blankWindowMode = false; public static $view_default; public static $isAjaxAction = false; public static $ajaxAction; public static $isTesting = false; public static $table_addons; public static $table_categories; public static $table_layouts; public static $table_prefix; public static $pathSettings; public static $filepathItemSettings; public static $pathPlugin; public static $pathPluginRel; public static $pathPluginFile; public static $pathTemplates; public static $pathViews; public static $pathViewsObjects; public static $pathLibrary; public static $pathAssets; public static $pathProvider; public static $pathProviderViews; public static $pathProviderTemplates; public static $pathWPLanguages; public static $pathPro; public static $current_host; public static $current_page_url; public static $current_protocol; public static $url_base; public static $url_site; public static $url_images; public static $url_images_screenshots; public static $url_no_image_placeholder; public static $url_video_thumbnail; public static $url_component_client; public static $url_component_admin; public static $url_component_admin_nowindow; public static $url_ajax; public static $url_ajax_full; public static $url_ajax_front; public static $url_default_addon_icon; public static $urlPlugin; public static $urlPluginImages; public static $url_provider; public static $url_assets; public static $url_assets_libraries; public static $url_assets_internal; public static $is_admin; public static $isLocal; //if website located in localhost public static $is_admin_debug_mode = false; public static $isDOUBLYSupported = true; public static $is_ssl; public static $path_base; public static $path_cache; public static $path_images; public static $path_images_screenshots; public static $layoutShortcodeName = "blox_page"; public static $arrClientSideText = array(); public static $arrServerSideText = array(); public static $isProductActive = false; public static $defaultAddonType = ""; public static $enableWebCatalog = true; public static $arrSizes = array("tablet","mobile"); public static $arrAdminViewPaths = array(); public static $alterViewHeaderPrefix = null; public static $arrViewAliases = array(); public static $arrDatasetTypes = array(); public static $currentPluginTitle = self::PLUGIN_TITLE; public static $objActiveAddonForAssets = null; public static $isProVersion = false; public static $isAdminRTL = false; public static $enableInsideWidgetFreeVersionNotifiaction = true; public static $colorPickerType = "spectrum"; /** * init globals */ public static function initGlobals(){ //set dev mode if(defined("UC_DEVMODE") && UC_DEVMODE === true) self::$inDev = true; if(defined("UC_DEBUG_AJAX_ERRORS") && UC_DEBUG_AJAX_ERRORS === true) self::$debugAjaxErrors = true; UniteProviderFunctionsUC::initGlobalsBase(); self::$current_protocol = "http://"; if(self::$is_ssl == true) self::$current_protocol = "https://"; self::$current_host = UniteFunctionsUC::getVal($_SERVER, "HTTP_HOST"); //add https:// prefix if(strpos(self::$current_host, "https://") === false && strpos(self::$current_host, "http://") === false) self::$current_host = self::$current_protocol.self::$current_host; self::$current_page_url = self::$current_host.UniteFunctionsUC::getVal($_SERVER, "REQUEST_URI"); self::$pathPluginRel = basename(self::$pathPlugin)."/"; self::$pathWPLanguages = self::$pathPluginRel."languages/"; self::$pathProvider = self::$pathPlugin."provider/"; self::$pathTemplates = self::$pathPlugin."views/templates/"; self::$pathViews = self::$pathPlugin."views/"; self::$pathViewsObjects = self::$pathPlugin."views/objects/"; self::$pathSettings = self::$pathPlugin."settings/"; self::$pathPro = self::$pathPlugin."pro/"; if(file_exists(self::$pathPro)) self::$isProVersion = true; if(defined("UC_TEST_FREE_VERSION")) self::$isProVersion = false; Global $mainFilepath; //defined at plugin start self::$pathPluginFile = $mainFilepath; self::$pathProviderViews = self::$pathProvider."views/"; self::$pathProviderTemplates = self::$pathProvider."views/templates/"; self::$filepathItemSettings = self::$pathSettings."item_settings.php"; self::$path_images_screenshots = self::$path_images.self::DIR_SCREENSHOTS."/"; self::$url_images_screenshots = self::$url_images.self::DIR_SCREENSHOTS."/"; self::$urlPluginImages = self::$urlPlugin."images/"; self::$url_no_image_placeholder = self::$urlPluginImages."placeholder.png"; self::$url_video_thumbnail = self::$urlPluginImages."video_thumbnail.png"; self::$pathLibrary = self::$pathPlugin."assets_libraries/"; //check for wp version UniteFunctionsUC::validateNotEmpty(GlobalsUC::$url_assets_internal, "assets internal"); self::$isLocal = UniteFunctionsUC::isLocal(); self::initDBTableTitles(); //dmp("init globals"); UniteProviderFunctionsUC::doAction(UniteCreatorFilters::ACTION_AFTER_INIT_GLOBALS); if(self::$is_admin){ $isDebugMode = UniteFunctionsUC::getGetVar("debug", "", UniteFunctionsUC::SANITIZE_KEY); self::$is_admin_debug_mode = UniteFunctionsUC::strToBool($isDebugMode); } } /** * init table titles */ private static function initDBTableTitles(){ $arrTitles = array(); $arrTitles[GlobalsUC::$table_addons] = esc_html__("Addon", "unlimited-elements-for-elementor"); $arrTitles[GlobalsUC::$table_categories] = esc_html__("Category", "unlimited-elements-for-elementor"); $arrTitles[GlobalsUC::$table_layouts] = esc_html__("Page", "unlimited-elements-for-elementor"); UniteCreatorDB::$arrTableTitles = $arrTitles; } /** * init after the includes done * //check if active only if in admin side */ public static function initAfterIncludes(){ $product = HelperUC::getProductFromRequest(); if(empty($product)) $product = self::PLUGIN_NAME; $webAPI = new UniteCreatorWebAPI(); if(!empty($product)) $webAPI->setProduct($product); self::$isProductActive = $webAPI->isProductActive(); //show trace by get url $isShowTrace = HelperUC::hasPermissionsFromQuery("uctrace"); if($isShowTrace == true){ GlobalsUC::$SHOW_TRACE_FRONT = true; GlobalsUC::$SHOW_TRACE = true; } //show errors by url $showAjaxErrors = HelperUC::hasPermissionsFromQuery("showajaxerrors"); if($showAjaxErrors == true) self::$debugAjaxErrors = true; } /** * init globals after admin init */ public static function initAfterAdminInit(){ global $wp_locale; if(!empty($wp_locale)){ GlobalsUC::$isAdminRTL = $wp_locale->is_rtl(); } } /** * print all globals variables */ public static function printVars(){ UniteFunctionsUC::showClassStaticVariables("GlobalsUC"); } } //init the globals GlobalsUC::initGlobals();
[-] unitecreator_assets_work.class.php
[edit]
[-] unitecreator_filters_process.class.php
[edit]
[-] unitecreator_api_integrations.class.php
[edit]
[-] unitecreator_params_editor.class.php
[edit]
[-] unitecreator_settings.class.php
[edit]
[-] unitecreator_addon_validator.class.php
[edit]
[-] unitecreator_addon_config.class.php
[edit]
[-] unitecreator_addon_changelog.class.php
[edit]
[-] unitecreator_addon.class.php
[edit]
[-] unitecreator_unitegallery.class.php
[edit]
[-] unitecreator_params_processor.class.php
[edit]
[+]
..
[-] unitecreator_categories.class.php
[edit]
[+]
manager
[-] unitecreator_client_text.php
[edit]
[-] unitecreator_browser.class.php
[edit]
[+]
framework
[+]
layouts
[-] unitecreator_settings_output.class.php
[edit]
[-] unitecreator_exporter.class.php
[edit]
[-] index.html
[edit]
[-] unitecreator_web_api.class.php
[edit]
[-] unitecreator_globals.class.php
[edit]
[-] unitecreator_addons.class.php
[edit]
[-] unitecreator_operations.class.php
[edit]
[-] unitecreator_variables_output.class.php
[edit]
[-] unitecreator_output.class.php
[edit]
[-] unitecreator_exporter_base.class.php
[edit]
[-] unitecreator_template_engine.class.php
[edit]
[-] unitecreator_entrance_animations.class.php
[edit]
[-] unitecreator_assets.class.php
[edit]
[-] unitecreator_library.class.php
[edit]
[-] unitecreator_actions.class.php
[edit]
[-] unitecreator_web_library.class.php
[edit]
[+]
addontypes
[-] unitecreator_dataset.class.php
[edit]
[+]
plugins
[-] unitecreator_form.class.php
[edit]
[-] unitecreator_addon_revisioner.class.php
[edit]
[-] unitecreator_helper.class.php
[edit]
[-] unitecreator_helperhtml.class.php
[edit]
[-] unitecreator_category.class.php
[edit]
[-] unitecreator_dialog_param.class.php
[edit]