From 5aa73029cfe7f46ac220fdf1b11fa7355dac69ef Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Fri, 21 Sep 2007 21:40:54 +0000 Subject: [PATCH] Added fromArray() methods. --- lib/Doctrine/Collection.php | 12 ++++++++++++ lib/Doctrine/Record.php | 10 ++++++++++ 2 files changed, 22 insertions(+) diff --git a/lib/Doctrine/Collection.php b/lib/Doctrine/Collection.php index 69cc0c544..79d056aa6 100644 --- a/lib/Doctrine/Collection.php +++ b/lib/Doctrine/Collection.php @@ -603,6 +603,18 @@ class Doctrine_Collection extends Doctrine_Access implements Countable, Iterator return $this->data; } } + public function fromArray($array) + { + $data = array(); + foreach ($array as $key => $row) { + $record = $this->_table->getRecord(); + $record->fromArray($row); + + $data[$key] = $record; + } + + $this->data = $data; + } public function getDeleteDiff() { return array_udiff($this->_snapshot, $this->data, array($this, "compareRecords")); diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index 4e2ad18ef..f22358dd7 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -1139,6 +1139,16 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count } return array_merge($a, $this->_values); } + public function fromArray($array) + { + foreach ($array as $key => $value) { + if (!$this->getTable()->hasRelation($key) && $this->getTable()->hasColumn($key)) { + $this->$key = $value; + } else { + $this->$key->fromArray($value); + } + } + } /** * exists * returns true if this record is persistent, otherwise false