This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
OriginalHouse_Web/src/wp-content/plugins/wp-pagenavi/scb/Table.php
2011-07-06 19:20:08 +00:00

53 lines
1.3 KiB
PHP

<?php
// Takes care of creating, updating and deleting database tables
class scbTable {
protected $name;
protected $columns;
protected $upgrade_method;
function __construct( $name, $file, $columns, $upgrade_method = 'dbDelta' ) {
global $wpdb;
$this->name = $wpdb->prefix . $name;
$this->columns = $columns;
$this->upgrade_method = $upgrade_method;
$wpdb->tables[] = $name;
$wpdb->$name = $this->name;
scbUtil::add_activation_hook( $file, array( $this, 'install' ) );
scbUtil::add_uninstall_hook( $file, array( $this, 'uninstall' ) );
}
function install() {
global $wpdb;
$charset_collate = '';
if ( $wpdb->has_cap( 'collation' ) ) {
if ( ! empty( $wpdb->charset ) )
$charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
if ( ! empty( $wpdb->collate ) )
$charset_collate .= " COLLATE $wpdb->collate";
}
if ( 'dbDelta' == $this->upgrade_method ) {
require_once ABSPATH . 'wp-admin/includes/upgrade.php';
dbDelta( "CREATE TABLE $this->name ( $this->columns ) $charset_collate" );
return;
}
if ( 'delete_first' == $this->upgrade_method )
$wpdb->query( "DROP TABLE IF EXISTS $this->name;" );
$wpdb->query( "CREATE TABLE IF NOT EXISTS $this->name ( $this->columns ) $charset_collate;" );
}
function uninstall() {
global $wpdb;
$wpdb->query( "DROP TABLE IF EXISTS $this->name" );
}
}