1
0
mirror of synced 2025-03-05 04:13:20 +03:00

added isIdentifier()

This commit is contained in:
zYne 2007-10-22 17:33:47 +00:00
parent a01ed0641f
commit a4ae926a85

View File

@ -334,7 +334,13 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
} }
} }
public function getMethodOwner($method) public function isIdentifier($identifier)
{
return ($identifier === $this->_identifier ||
in_array($identifier, (array) $this->_identifier));
}
public function getMethodOwner($method)
{ {
return (isset($this->_invokedMethods[$method])) ? return (isset($this->_invokedMethods[$method])) ?
$this->_invokedMethods[$method] : false; $this->_invokedMethods[$method] : false;
@ -1372,7 +1378,7 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
{ {
if ($value === self::$_null) { if ($value === self::$_null) {
return self::$_null; return self::$_null;
} else if ($value === null) { } elseif ($value === null) {
return null; return null;
} else { } else {
$type = $this->getTypeOf($field); $type = $this->getTypeOf($field);
@ -1654,4 +1660,4 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
} }
} }
} }
} }