. */ Doctrine::autoload('Doctrine_Relation'); /** * Doctrine_Relation_ForeignKey * This class represents a foreign key relation * * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @package Doctrine * @category Object Relational Mapping * @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(); foreach ((array) $this->definition['local'] as $local) { $id = $record->get($local); } if ($this->isOneToOne()) { if (empty($id)) { $related = $this->getTable()->create(); } else { $dql = 'FROM ' . $this->getTable()->getComponentName() . ' WHERE ' . $this->getCondition(); $coll = $this->getTable()->getConnection()->query($dql, array($id)); $related = $coll[0]; } $related->set($this->definition['foreign'], $record, false); } else { if (empty($id)) { $related = new Doctrine_Collection($this->getTable()); } else { $query = $this->getRelationDql(1); $related = $this->getTable()->getConnection()->query($query, array($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); } }