-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDatabase.php
94 lines (83 loc) · 2.77 KB
/
Database.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
<?php
namespace WPLibs\Database;
use Database\ConnectionInterface;
/**
* Main database class.
*
* @method static array fetch( $query, array $bindings = [] )
* @method static array fetchAll( $query, array $bindings = [] )
* @method static mixed fetchOne( $query, array $bindings = [] )
* @method static int|false query( $query, array $bindings = [] )
* @method static mixed transaction( \Closure $callback )
* @method static array pretend( \Closure $callback )
* @method static bool pretending()
* @method static \Psr\Log\LoggerInterface|\Database\QueryLogger getLogger()
* @method static bool logging()
* @method static \WPLibs\Database\Connection enableQueryLog()
* @method static \WPLibs\Database\Connection disableQueryLog()
* @method static \WPLibs\Database\Builder newQuery()
*
* @package WPLibs\WP_Object\Database
*/
class Database {
/**
* The database connection.
*
* @var \WPLibs\Database\Connection
*/
protected static $connection;
/**
* Begin a fluent query against a database table.
*
* @param string $table
*
* @return \WPLibs\Database\Builder
*/
public static function table( $table ) {
return static::getConnection()->table( $table );
}
/**
* Run a select statement against the database.
*
* @param string $query
* @param array $bindings
* @return array
*/
public static function select( $query, array $bindings = [] ) {
return static::getConnection()->fetchAll( $query, $bindings );
}
/**
* Get the connection instance.
*
* @return \Database\ConnectionInterface|\WPLibs\Database\Connection
*/
public static function getConnection() {
global $wpdb;
if ( is_null( static::$connection ) ) {
static::$connection = new Connection( $wpdb );
}
return static::$connection;
}
/**
* Set the connection implementation.
*
* @param \Database\ConnectionInterface $connection
*/
public static function setConnection( ConnectionInterface $connection ) {
static::$connection = $connection;
}
/**
* Handle forward call connection methods.
*
* @param string $name
* @param array $arguments
*
* @return mixed
*/
public static function __callStatic( $name, $arguments ) {
if ( method_exists( $connection = static::getConnection(), $name ) ) {
return $connection->{$name}( ...$arguments );
}
throw new \BadMethodCallException( 'Method [' . $name . '] in class [' . get_class( $connection ) . '] does not exist.' );
}
}