Advertisement
terorama

WP / inc / wpdb / db.inc.php

May 29th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. class DBConn implements IDBConn {
  4.  
  5.    //----------------------------------
  6.    public function connect() {
  7.    }
  8.    
  9.    //----------------------------------
  10.    public function set($DB_HOST, $DB_USER, $DB_PASSWORD, $DB_NAME) {  
  11.    }
  12.    
  13.    //----------------------------------
  14.    public function get() {
  15.    
  16.        global $wpdb;  
  17.        $wpdb->show_errors();      
  18.        return $wpdb;
  19.    }
  20. }
  21.  
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement