From eb555668d2797c400c8467091fb5c72647c36522 Mon Sep 17 00:00:00 2001 From: zYne Date: Mon, 26 Nov 2007 22:25:18 +0000 Subject: [PATCH] --- lib/Doctrine/Table.php | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/lib/Doctrine/Table.php b/lib/Doctrine/Table.php index 7d3846b46..db2259247 100644 --- a/lib/Doctrine/Table.php +++ b/lib/Doctrine/Table.php @@ -179,6 +179,7 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable protected $_parser; /** + * @see Doctrine_Template * @var array $_templates an array containing all templates attached to this table */ protected $_templates = array(); @@ -187,6 +188,11 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable * @var array $_filters an array containing all record filters attached to this table */ protected $_filters = array(); + /** + * @see Doctrine_Plugin + * @var array $_plugins an array containing all plugins attached to this table + */ + protected $_plugins = array(); /** * @var array $_invokedMethods method invoker cache @@ -1747,7 +1753,29 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable return $this; } + public function getPlugin($plugin) + { + if ( ! isset($this->_plugins[$plugin])) { + throw new Doctrine_Table_Exception('Plugin ' . $plugin . ' not loaded'); + } + return $this->_plugins[$plugin]; + } + + public function hasPlugin($plugin) + { + return isset($this->_plugins[$plugin]); + } + + public function addPlugin(Doctrine_Plugin $plugin, $name = null) + { + if ($name === null) { + $this->_plugins[] = $plugin; + } else { + $this->_plugins[$name] = $plugin; + } + return $this; + } /** * bindQueryParts * binds query parts to given component