-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMyDataBase.php
114 lines (95 loc) · 2.77 KB
/
MyDataBase.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
class MyDataBase
{
private $tableName = false;
public function __construct($tableName)
{
global $wpdb;
$this->tableName = $wpdb->prefix.$tableName;
}
public function insert(array $data)
{
global $wpdb;
if(empty($data))
{
return false;
}
$wpdb->insert($this->tableName, $data);
return $wpdb->insert_id;
}
public function get_all( $orderBy = NULL )
{
global $wpdb;
$sql = 'SELECT * FROM `'.$this->tableName.'`';
if(!empty($orderBy))
{
$sql .= ' ORDER BY ' . $orderBy;
}
$all = $wpdb->get_results($sql);
return $all;
}
public function get_by(array $conditionValue, $condition = '=', $returnSingleRow = FALSE)
{
global $wpdb;
try
{
$sql = 'SELECT * FROM `'.$this->tableName.'` WHERE ';
$conditionCounter = 1;
foreach ($conditionValue as $field => $value)
{
if($conditionCounter > 1)
{
$sql .= ' AND ';
}
switch(strtolower($condition))
{
case 'in':
if(!is_array($value))
{
throw new Exception("Values for IN query must be an array.", 1);
}
$sql .= $wpdb->prepare('`%s` IN (%s)', $field, implode(',', $value));
break;
default:
$sql .= $wpdb->prepare('`'.$field.'` '.$condition.' %s', $value);
break;
}
$conditionCounter++;
}
$result = $wpdb->get_results($sql);
// As this will always return an array of results if you only want to return one record make $returnSingleRow TRUE
if(count($result) == 1 && $returnSingleRow)
{
$result = $result[0];
}
return $result;
}
catch(Exception $ex)
{
return false;
}
}
public function update(array $data, array $conditionValue)
{
global $wpdb;
if(empty($data))
{
return false;
}
$updated = $wpdb->update( $this->tableName, $data, $conditionValue);
return $updated;
}
public function delete(array $conditionValue)
{
global $wpdb;
$deleted = $wpdb->delete( $this->tableName, $conditionValue );
return $deleted;
}
public function delete_all(){
global $wpdb;
$query = "TRUNCATE TABLE `".$this->tableName."`";
$res = $wpdb->query($query);
return $res;
}
}
?>