PATH:
home
/
lab2454c
/
equitablegold.com
/
wp-content
/
plugins
/
unlimited-elements-for-elementor
/
provider
<?php defined('UNLIMITED_ELEMENTS_INC') or die('Restricted access'); class UniteProviderDBUC{ private $wpdb; /** * * constructor - set database object */ public function __construct(){ global $wpdb; $this->wpdb = $wpdb; } /** * get error number */ public function getErrorNum(){ return -1; } /** * get error message */ public function getErrorMsg(){ /* if(!empty($this->wpdb->last_error)){ UniteFunctionsUC::showTrace();exit(); } */ return $this->wpdb->last_error; } /** * get last row insert id */ public function insertid(){ return $this->wpdb->insert_id; } /** * do sql query, return success */ public function query($query){ $this->wpdb->suppress_errors(false); $success = $this->wpdb->query($query); return($success); } /** * get affected rows after operation */ public function getAffectedRows(){ return $this->wpdb->num_rows; } /** * fetch objects from some sql */ public function fetchSql($query, $supressErrors = false){ $this->wpdb->suppress_errors($supressErrors); $rows = $this->wpdb->get_results($query, ARRAY_A); return($rows); } /** * escape some string */ public function escape($string){ return $this->wpdb->_escape($string); } } ?>
[-] custom_post_types.class.php
[edit]
[-] provider_layouts_exporter.class.php
[edit]
[+]
..
[-] include_provider_after.php
[edit]
[-] provider_template_engine.class.php
[edit]
[-] provider_web_api.class.php
[edit]
[-] wpml_integrate.class.php
[edit]
[+]
core
[-] provider_admin.class.php
[edit]
[-] provider_admin_plugin_base.class.php
[edit]
[-] integrations.class.php
[edit]
[-] provider_globals.class.php
[edit]
[-] provider_front.class.php
[edit]
[-] provider_addon.class.php
[edit]
[-] provider_browser.class.php
[edit]
[-] provider_manager_addons.class.php
[edit]
[-] provider_dialog_param.class.php
[edit]
[-] include_provider.php
[edit]
[-] woocommerce_integrate.class.php
[edit]
[-] provider_settings_output.class.php
[edit]
[-] provider_categories.class.php
[edit]
[-] provider_operations.class.php
[edit]
[-] provider_helper.class.php
[edit]
[-] toolset_integrate.class.php
[edit]
[+]
settings
[-] provider_functions.class.php
[edit]
[+]
assets
[-] gutenberg_integrate.class.php
[edit]
[-] provider_alt_loader.php
[edit]
[-] provider_layouts.class.php
[edit]
[-] provider_layout_output.class.php
[edit]
[-] provider_settings.class.php
[edit]
[+]
admin_notices
[+]
views
[-] provider_library.class.php
[edit]
[-] wpml_translation_module.class.php
[edit]
[-] provider_settings_multisource.class.php
[edit]
[-] provider_client_text.php
[edit]
[+]
freemius
[-] provider_actions.class.php
[edit]
[-] pods_integrate.class.php
[edit]
[-] functions_wordpress.class.php
[edit]
[-] provider_db.class.php
[edit]
[-] provider_params_processor.class.php
[edit]
[-] acf_integrate.class.php
[edit]
[-] provider_params_processor_multisource.class.php
[edit]
[-] provider_layout.class.php
[edit]
[-] provider_output.class.php
[edit]