From 18857d77e4fe867e55018e32360684b432caec0f Mon Sep 17 00:00:00 2001 From: zYne Date: Mon, 8 Oct 2007 21:22:13 +0000 Subject: [PATCH] hasTemplate() added --- lib/Doctrine/Table.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/Doctrine/Table.php b/lib/Doctrine/Table.php index 17f849148..112cc2fe4 100644 --- a/lib/Doctrine/Table.php +++ b/lib/Doctrine/Table.php @@ -1357,6 +1357,11 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable return $this->_templates[$template]; } + + public function hasTemplate($template) + { + return isset($this->_templates[$template]); + } public function addTemplate($template, Doctrine_Template $impl) {