ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "abstract-class-db.php"
Full Path: /home/zcziejy/ryadselyen/plugins/wp-booking-system/includes/abstracts/abstract-class-db.php
File size: 886 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* Base class for all core database objects.
*
*/
abstract class WPBS_DB {
/**
* Database table name
*
* @access public
* @var string
*
*/
public $table_name;
/**
* Primary key of the table
*
* @access public
* @var string
*
*/
public $primary_key;
/**
* The context of the object affected
*
* @access public
* @var string
*
*/
public $context = '';
/**
* Constructor
*
* Subclasses should set the $table_name, $primary_key, $context
*
* @access public
*
*/
public function __construct() {}
/**
* Retrieves the list of columns for the database table
*
* @access public
*
* @return array
*
*/
public function get_columns() {
return array();
}
}