From 796c53fc87619de32c53e91a12d5f66ecfab890f Mon Sep 17 00:00:00 2001 From: zYne Date: Wed, 23 May 2007 20:26:21 +0000 Subject: [PATCH] remove getter / setter invocation from the core, getter / setter generation will soon be part of Import --- lib/Doctrine/Record.php | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index c82174a95..51906614c 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -702,17 +702,7 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite } else { $value = $this->_data[$lower]; } - - } - - if ($value !== self::$_null) { - $value = $this->_table->invokeGet($this, $name, $value); - - if ($invoke && $name !== $this->_table->getIdentifier()) { - return $this->_table->getAttribute(Doctrine::ATTR_LISTENER)->onGetProperty($this, $name, $value); - } else { - return $value; - } + return $value; } if (isset($this->_id[$lower])) { @@ -786,13 +776,10 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite } if ($old !== $value) { - $value = $this->_table->invokeSet($this, $name, $value); - - $value = $this->_table->getAttribute(Doctrine::ATTR_LISTENER)->onSetProperty($this, $name, $value); - - if ($value === null) + if ($value === null) { $value = self::$_null; - + } + $this->_data[$lower] = $value; $this->_modified[] = $lower; switch ($this->_state) {