diff --git a/pandora_console/include/lib/Entity.php b/pandora_console/include/lib/Entity.php index 59306db0ca..cb091e720e 100644 --- a/pandora_console/include/lib/Entity.php +++ b/pandora_console/include/lib/Entity.php @@ -100,6 +100,32 @@ abstract class Entity } + /** + * Duplicates an object. + * + * @param array $field_exceptions Fields to skip. + * @param string $class_str Class name. + * + * @return object + */ + public function duplicate( + array $field_exceptions=[], + string $class_str=__CLASS__ + ) { + $keys = array_keys($this->toArray()); + + $new = new $class_str(); + foreach ($keys as $k) { + if (in_array($k, $field_exceptions) === false) { + $new->$k($this->$k()); + } + } + + return $new; + + } + + /** * Defines a generic constructor to extract information of the object. *