wpdb = $wpdb; $this->table_prefix = $table_prefix . "pollpress_"; $this->table_name = $this->table_prefix . $table_name; if( function_exists('add_action') ) add_action ('activate_' . POLLPRESS_NAME, array(&$this, 'make_table')); } function make_table() { if ( $this->wpdb->get_var("SHOW TABLES LIKE '$this->table_name'") != $this->table_name) { $this->create_self(); } } function create_self() { $create_table = $this->create_sql(); require_once(ABSPATH . 'wp-admin/upgrade-functions.php'); dbDelta($create_table); } function create_sql() { return ''; } function get_name() { return $this->table_name; } } ?>