This commit is contained in:
parent
c06c81dd85
commit
b3b1f617fe
2 changed files with 31 additions and 7 deletions
|
@ -140,18 +140,42 @@ class Doctrine_Relation_Parser
|
||||||
'foreign' => $def['local']));
|
'foreign' => $def['local']));
|
||||||
}
|
}
|
||||||
if (in_array($def['class'], $localClasses)) {
|
if (in_array($def['class'], $localClasses)) {
|
||||||
return new Doctrine_Relation_Association_Self($def);
|
$rel = new Doctrine_Relation_Association_Self($def);
|
||||||
} else {
|
} else {
|
||||||
return new Doctrine_Relation_Association($def);
|
$rel = new Doctrine_Relation_Association($def);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$def = $this->completeDefinition($def);
|
$def = $this->completeDefinition($def);
|
||||||
if ( ! isset($def['foreign'])) {
|
if ( ! isset($def['foreign'])) {
|
||||||
Doctrine::dump($def);
|
Doctrine::dump($def);
|
||||||
}
|
}
|
||||||
return new Doctrine_Relation_ForeignKey($def);
|
$rel = new Doctrine_Relation_ForeignKey($def);
|
||||||
|
}
|
||||||
|
if (isset($rel)) {
|
||||||
|
unset($this->_pending[$name]);
|
||||||
|
|
||||||
|
return $rel;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if ($recursive) {
|
||||||
|
return $this->getRelation($name, false);
|
||||||
|
} else {
|
||||||
|
throw new Doctrine_Table_Exception($this->options['name'] . " doesn't have a relation to " . $name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* getRelations
|
||||||
|
* returns an array containing all relation objects
|
||||||
|
*
|
||||||
|
* @return array an array of Doctrine_Relation objects
|
||||||
|
*/
|
||||||
|
public function getRelations()
|
||||||
|
{
|
||||||
|
foreach ($this->_pending as $k => $v) {
|
||||||
|
$this->getRelation($k);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->_relations;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Completes the given association definition
|
* Completes the given association definition
|
||||||
|
@ -310,8 +334,8 @@ class Doctrine_Relation_Parser
|
||||||
return $def;
|
return $def;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
} Doctrine::dump($this->_table->getComponentName());
|
||||||
|
Doctrine::dump($def);
|
||||||
throw new Doctrine_Relation_Parser_Exception("Couldn't complete relation definition.");
|
throw new Doctrine_Relation_Parser_Exception("Couldn't complete relation definition.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -178,8 +178,8 @@ class Doctrine_Relation_ParserOld
|
||||||
|
|
||||||
$lower = strtolower($name);
|
$lower = strtolower($name);
|
||||||
|
|
||||||
if (isset($this->columns[$lower])) {
|
if ($this->_table->hasColumn($lower)) {
|
||||||
throw new Doctrine_Table_Exception("Couldn't bind relation. Column with name " . $lower . ' already exists!');
|
throw new Doctrine_Relation_Exception("Couldn't bind relation. Column with name " . $lower . ' already exists!');
|
||||||
}
|
}
|
||||||
|
|
||||||
$e = explode(' as ', $name);
|
$e = explode(' as ', $name);
|
||||||
|
|
Loading…
Add table
Reference in a new issue