From fcc58778c5b63dce72bae2d2f07aac1193193e2a Mon Sep 17 00:00:00 2001 From: zYne Date: Sun, 8 Jul 2007 20:18:50 +0000 Subject: [PATCH] --- lib/Doctrine/Query.php | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/Query.php b/lib/Doctrine/Query.php index af5aab3bd..eff3cbb87 100644 --- a/lib/Doctrine/Query.php +++ b/lib/Doctrine/Query.php @@ -314,6 +314,21 @@ class Doctrine_Query extends Doctrine_Query_Abstract implements Countable return $this; } + /** + * getDqlPart + * returns the given DQL query part + * + * @param string $queryPart the name of the query part + * @return string the DQL query part + */ + public function getDqlPart($queryPart) + { + if ( ! isset($this->_dqlParts[$queryPart])) { + throw new Doctrine_Query_Exception('Unknown query part ' . $queryPart); + } + + return $this->_dqlParts[$queryPart]; + } /** * getDql * returns the DQL query associated with this object @@ -509,7 +524,7 @@ class Doctrine_Query extends Doctrine_Query_Abstract implements Countable * * @return void */ - public function processPendingSubqueries() + public function processPendingSubqueries() { foreach ($this->pendingSubqueries as $value) { list($dql, $alias) = $value;