diff --git a/pandora_console/include/lib/Entity.php b/pandora_console/include/lib/Entity.php index 3031a1336f..143ae19362 100644 --- a/pandora_console/include/lib/Entity.php +++ b/pandora_console/include/lib/Entity.php @@ -51,6 +51,26 @@ abstract class Entity protected $table = ''; + /** + * Instances a new object using array definition. + * + * @param string $class_str Class name. + * @param array $data Fields data. + * + * @return object With current definition. + */ + public static function build(string $class_str, array $data=[]) + { + $obj = new $class_str(); + // Set values. + foreach ($data as $k => $v) { + $obj->{$k}($v); + } + + return $obj; + } + + /** * Defines a generic constructor to extract information of the object. *