blob: 9cc7755f4a50c6185cbac1b861c0a734106dd5c8 (
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
|
<?php
namespace ORM;
abstract class Entity implements EntityInterface {
protected $id;
protected $time_insert;
protected $time_update;
#===============================================================================
# Get attribute
#===============================================================================
public function get(string $attribute) {
return $this->{$attribute} ?? NULL;
}
#===============================================================================
# Set attribute
#===============================================================================
public function set(string $attribute, $value) {
return $this->{$attribute} = $value;
}
#===============================================================================
# Return ID
#===============================================================================
final public function getID(): int {
return $this->id;
}
#===============================================================================
# Get all attributes
#===============================================================================
public function getAll(array $exclude = []): array {
$attributes = get_object_vars($this);
return array_filter($attributes, function($attribute) use($exclude) {
return !in_array($attribute, $exclude);
}, ARRAY_FILTER_USE_KEY);
}
#===============================================================================
# Get array with all non-false attributes
#===============================================================================
public function getFilteredAttributes(): array {
return array_filter(get_object_vars($this), function($value) {
return $value !== FALSE;
});
}
}
|