|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Rougin\Credo\Traits; |
|
4
|
|
|
|
|
5
|
|
|
use Rougin\Credo\Credo; |
|
6
|
|
|
|
|
7
|
|
|
/** |
|
8
|
|
|
* Credo Trait |
|
9
|
|
|
* |
|
10
|
|
|
* @method string table() |
|
11
|
|
|
* |
|
12
|
|
|
* @package Credo |
|
13
|
|
|
* @author Rougin Royce Gutib <[email protected]> |
|
14
|
|
|
*/ |
|
15
|
|
|
trait CredoTrait |
|
16
|
|
|
{ |
|
17
|
|
|
/** |
|
18
|
|
|
* @var \Rougin\Credo\Credo |
|
19
|
|
|
*/ |
|
20
|
|
|
protected $credo; |
|
21
|
|
|
|
|
22
|
|
|
/** |
|
23
|
|
|
* Sets the Credo instance. |
|
24
|
|
|
* |
|
25
|
|
|
* @param \Rougin\Credo\Credo $credo |
|
26
|
|
|
* @return self |
|
27
|
|
|
*/ |
|
28
|
12 |
|
public function credo(Credo $credo) |
|
29
|
|
|
{ |
|
30
|
12 |
|
$this->credo = $credo; |
|
31
|
|
|
|
|
32
|
12 |
|
return $this; |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
|
|
/** |
|
36
|
|
|
* Finds the row from storage based on given identifier. |
|
37
|
|
|
* |
|
38
|
|
|
* @param mixed $id |
|
39
|
|
|
* @param integer|null $mode |
|
40
|
|
|
* @param integer|null $version |
|
41
|
|
|
* @return mixed |
|
42
|
|
|
*/ |
|
43
|
9 |
|
public function find($id, $mode = null, $version = null) |
|
44
|
|
|
{ |
|
45
|
9 |
|
return $this->credo->find(get_class($this), $id, $mode, $version); |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
/** |
|
49
|
|
|
* Finds models by a set of criteria. |
|
50
|
|
|
* |
|
51
|
|
|
* @param array $criteria |
|
52
|
|
|
* @param integer|null $limit |
|
53
|
|
|
* @param integer|null $offset |
|
54
|
|
|
* @param array|null $order |
|
55
|
|
|
* @return array |
|
56
|
|
|
*/ |
|
57
|
3 |
|
public function findBy(array $criteria = array(), $limit = null, $offset = null, array $order = null) |
|
58
|
|
|
{ |
|
59
|
3 |
|
return $this->credo->findBy(get_class($this), $criteria, $limit, $offset, $order); |
|
|
|
|
|
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* Returns an array of rows from a specified table. |
|
64
|
|
|
* |
|
65
|
|
|
* @param string $table |
|
66
|
|
|
* @param integer|null $limit |
|
67
|
|
|
* @param integer|null $offset |
|
68
|
|
|
* @param array|null $order |
|
69
|
|
|
* @return mixed |
|
70
|
|
|
*/ |
|
71
|
9 |
|
public function get($limit = null, $offset = null, array $order = null) |
|
72
|
|
|
{ |
|
73
|
9 |
|
return $this->credo->get(get_class($this), $limit, $offset, $order); |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
/** |
|
77
|
|
|
* Sets the "WHERE" criteria. |
|
78
|
|
|
* |
|
79
|
|
|
* @param array|string $key |
|
80
|
|
|
* @param mixed|null $value |
|
81
|
|
|
* @return self |
|
82
|
|
|
*/ |
|
83
|
6 |
|
public function where($key, $value = null) |
|
84
|
|
|
{ |
|
85
|
6 |
|
$this->credo->where($key, $value); |
|
86
|
|
|
|
|
87
|
6 |
|
return $this; |
|
88
|
|
|
} |
|
89
|
|
|
} |
|
90
|
|
|
|