parent
bc717ac900
commit
42170dd406
1 changed files with 5 additions and 2 deletions
|
@ -171,12 +171,15 @@ class Doctrine_Tree_NestedSet extends Doctrine_Tree implements Doctrine_Tree_Int
|
||||||
public function fetchBranch($pk, $options = array())
|
public function fetchBranch($pk, $options = array())
|
||||||
{
|
{
|
||||||
$record = $this->table->find($pk);
|
$record = $this->table->find($pk);
|
||||||
|
if ( ! ($record instanceof Doctrine_Record)) {
|
||||||
|
// TODO: if record doesn't exist, throw exception or similar?
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if ($record->exists()) {
|
if ($record->exists()) {
|
||||||
$options = array_merge(array('include_record'=>true), $options);
|
$options = array_merge(array('include_record'=>true), $options);
|
||||||
return $record->getNode()->traverse('Pre', $options);
|
return $record->getNode()->traverse('Pre', $options);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: if record doesn't exist, throw exception or similar?
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue