. */ Doctrine::autoload('Doctrine_Relation'); /** * Doctrine_Relation_ForeignKey * This class represents a foreign key relation * * @package Doctrine * @subpackage Relation * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ class Doctrine_Relation_ForeignKey extends Doctrine_Relation { /** * fetchRelatedFor * * fetches a component related to given record * * @param Doctrine_Record $record * @return Doctrine_Record|Doctrine_Collection */ public function fetchRelatedFor(Doctrine_Record $record) { $id = array(); $localTable = $record->getTable(); foreach ((array) $this->definition['local'] as $local) { $value = $record->get($localTable->getFieldName($local)); if (isset($value)) { $id[] = $value; } } if ($this->isOneToOne()) { if ( ! $record->exists() || empty($id) || ! $this->_foreignMapper->getAttribute(Doctrine::ATTR_LOAD_REFERENCES)) { $related = $this->_foreignMapper->create(); } else { $dql = 'FROM ' . $this->_foreignMapper->getComponentName() . ' WHERE ' . $this->getCondition(); $coll = $this->getTable()->getConnection()->query($dql, $id); $related = $coll[0]; } // set the foreign key field on the related record $related->set($related->getTable()->getFieldName($this->definition['foreign']), $record, false); } else { if ( ! $record->exists() || empty($id) || ! $this->_foreignMapper->getAttribute(Doctrine::ATTR_LOAD_REFERENCES)) { $related = new Doctrine_Collection($this->_foreignMapper->getComponentName()); } else { $query = $this->getRelationDql(1); $related = $this->getTable()->getConnection()->query($query, $id); } $related->setReference($record, $this); } return $related; } /** * getCondition * * @param string $alias */ public function getCondition($alias = null) { if ( ! $alias) { $alias = $this->getTable()->getComponentName(); } $conditions = array(); foreach ((array) $this->definition['foreign'] as $foreign) { $conditions[] = $alias . '.' . $foreign . ' = ?'; } return implode(' AND ', $conditions); } }