-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdbmanager.php
48 lines (37 loc) · 1.05 KB
/
dbmanager.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
global $wpdb;
Class IFLPMDBManager {
public static function does_table_exist_in_database($table_name) {
global $wpdb;
$mytables = $wpdb->get_results("SHOW TABLES");
foreach ($mytables as $mytable) {
foreach ($mytable as $t) {
if ($t == $table_name) {
return true;
}
}
}
return false;
}
public static function is_table_empty($table_name) {
global $wpdb;
$rows = $wpdb->get_results("SELECT COUNT(*) as num_rows FROM " . $table_name);
return $rows[0]->num_rows == 0;
}
public static function create_table($table_name,$sql,$table_version) {
global $wpdb;
$charset_collate = $wpdb->get_charset_collate();
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
dbDelta($sql);
add_option($table_name.'_db_version', $table_version);
}
public static function delete_all_rows_from_table($table_name) {
global $wpdb;
$result = $wpdb->query("TRUNCATE TABLE " . $table_name);
}
public static function drop_table($table_name) {
global $wpdb;
$result = $wpdb->query("DROP TABLE IF EXISTS " . $table_name);
}
}
?>