aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/ORM/Entity.php
blob: a19b1f4674e91d4e3c25829bb349ae76fc2d6487 (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) {
		if($this->{$attribute} !== $value) {
			!in_array($attribute, $this->_modified) &&
				array_push($this->_modified, $attribute);
		}

		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 an array of modified attribute keys
	#===============================================================================
	public function getModifiedKeys(): array {
		return $this->_modified;
	}
}