blob: 61b9371e3184e1632c4e216f954539330107163f (
plain)
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
|
<?php
namespace ORM;
abstract class Entity implements EntityInterface {
protected $id;
protected $time_insert;
protected $time_update;
# Modified attributes
private $_modified = [];
#===============================================================================
# Get attribute
#===============================================================================
public function get(string $attribute) {
return $this->{$attribute} ?? NULL;
}
#===============================================================================
# Set attribute
#===============================================================================
public function set(string $attribute, $value): void {
if($this->{$attribute} !== $value) {
$this->{$attribute} = $value;
!in_array($attribute, $this->_modified) &&
array_push($this->_modified, $attribute);
}
}
#===============================================================================
# Return ID
#===============================================================================
final public function getID(): int {
return $this->id;
}
#===============================================================================
# Get all attributes
#===============================================================================
public function getAll(array $exclude = []): array {
$attributes = get_object_vars($this);
$exclude = array_merge($exclude, ['_modified']);
return array_filter($attributes, function($attribute) use($exclude) {
return !in_array($attribute, $exclude);
}, ARRAY_FILTER_USE_KEY);
}
#===============================================================================
# Get an array of modified attribute keys
#===============================================================================
public function getModifiedKeys(): array {
return $this->_modified;
}
}
|