From 1d1f0556b2810fbf87bd5d96c385aae0072e46bf Mon Sep 17 00:00:00 2001 From: chtito Date: Thu, 14 Dec 2006 19:01:24 +0000 Subject: [PATCH] allowing customisation of the invokers prefixes --- lib/Doctrine.php | 8 ++++++++ lib/Doctrine/Configurable.php | 4 +++- lib/Doctrine/Table.php | 14 +++++++++++--- 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/lib/Doctrine.php b/lib/Doctrine.php index b21950f73..e848343f8 100644 --- a/lib/Doctrine.php +++ b/lib/Doctrine.php @@ -121,6 +121,14 @@ final class Doctrine { * accessor invoking attribute */ const ATTR_ACCESSORS = 18; + /** + * accessor invoking prefix get + */ + const ATTR_ACCESSOR_PREFIX_GET = 22; + /** + * accessor invoking prefix set + */ + const ATTR_ACCESSOR_PREFIX_SET = 23; diff --git a/lib/Doctrine/Configurable.php b/lib/Doctrine/Configurable.php index 2b3a66bad..61d568e75 100644 --- a/lib/Doctrine/Configurable.php +++ b/lib/Doctrine/Configurable.php @@ -119,6 +119,8 @@ abstract class Doctrine_Configurable { case Doctrine::ATTR_QUOTE_IDENTIFIER: case Doctrine::ATTR_PORTABILITY: case Doctrine::ATTR_DEFAULT_TABLE_TYPE: + case Doctrine::ATTR_ACCESSOR_PREFIX_GET: + case Doctrine::ATTR_ACCESSOR_PREFIX_SET: break; case Doctrine::ATTR_SEQCOL_NAME: @@ -203,7 +205,7 @@ abstract class Doctrine_Configurable { public function getAttribute($attribute) { $attribute = (int) $attribute; - if($attribute < 1 || $attribute > 21) + if($attribute < 1 || $attribute > 23) throw new Doctrine_Exception('Unknown attribute.'); if( ! isset($this->attributes[$attribute])) { diff --git a/lib/Doctrine/Table.php b/lib/Doctrine/Table.php index 91f54aeb7..6ec1df527 100644 --- a/lib/Doctrine/Table.php +++ b/lib/Doctrine/Table.php @@ -1009,9 +1009,13 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable { */ public function invokeSet(Doctrine_Record $record, $name, $value) { if( ! ($this->getAttribute(Doctrine::ATTR_ACCESSORS) & Doctrine::ACCESSOR_SET)) - return $value; + return $value; + + $prefix = $this->getAttribute(Doctrine::ATTR_ACCESSOR_PREFIX_SET); + if (!$prefix) + $prefix = 'set'; - $method = 'set' . $name; + $method = $prefix . $name; if(method_exists($record, $method)) { return $record->$method($value); @@ -1028,7 +1032,11 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable { if( ! ($this->getAttribute(Doctrine::ATTR_ACCESSORS) & Doctrine::ACCESSOR_GET)) return $value; - $method = 'get' . $name; + $prefix = $this->getAttribute(Doctrine::ATTR_ACCESSOR_PREFIX_GET); + if (!$prefix) + $prefix = 'get'; + + $method = $prefix . $name; if(method_exists($record, $method)) { return $record->$method($value);