Returns id with errors
This commit is contained in:
parent
9f73a25ef4
commit
fbd60eb130
|
@ -219,13 +219,13 @@ class Entity {
|
||||||
foreach ($prop_value as $val) {
|
foreach ($prop_value as $val) {
|
||||||
if (!$validation->validate($val)) {
|
if (!$validation->validate($val)) {
|
||||||
|
|
||||||
$this->add_error($this->get_id() .' '. $prop, $message);
|
$this->add_error($prop, $message);
|
||||||
$is_valid = false;
|
$is_valid = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (!$validation->validate($prop_value)) {
|
if (!$validation->validate($prop_value)) {
|
||||||
$this->add_error($this->get_id() .' '. $prop, $message);
|
$this->add_error($prop, $message);
|
||||||
$is_valid = false;
|
$is_valid = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -236,6 +236,8 @@ class Entity {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_errors() {
|
public function get_errors() {
|
||||||
|
$this->errors['id'] = $this->get_mapped_property('id');
|
||||||
|
|
||||||
return $this->errors;
|
return $this->errors;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue