| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/pia/wp-content/plugins/doubly/inc_php/ |
Upload File : |
<?php
/**
* @package Doubly
* @author Unlimited Elements
* @copyright (C) 2022 Unlimited Elements, All Rights Reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
if(!defined("DOUBLY_INC")) die("restricted access");
class Doubly_PluginProviderDB{
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)){
UniteFunctionsDOUBLY::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);
}
}
?>