From b44f13e73207efa5beabc3ad889a9446d2139fac Mon Sep 17 00:00:00 2001 From: zYne Date: Fri, 20 Jul 2007 09:48:28 +0000 Subject: [PATCH] --- lib/Doctrine/Template/Seachable.php | 60 +++++++++++++++++++++++++++++ lib/Doctrine/Template/Taggable.php | 36 +++++++++++++++++ 2 files changed, 96 insertions(+) create mode 100644 lib/Doctrine/Template/Seachable.php create mode 100644 lib/Doctrine/Template/Taggable.php diff --git a/lib/Doctrine/Template/Seachable.php b/lib/Doctrine/Template/Seachable.php new file mode 100644 index 000000000..26d1f8e52 --- /dev/null +++ b/lib/Doctrine/Template/Seachable.php @@ -0,0 +1,60 @@ +. + */ + +/** + * Doctrine_Template_Searchable + * + * @author Konsta Vesterinen + * @package Doctrine + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @version $Revision$ + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + */ +class Doctrine_Template_Searchable extends Doctrine_Template +{ + protected $_search; + + public function __construct(array $options) + { + $this->_search = new Doctrine_Search($options); + } + public function setUp() + { + $this->_search->buildDefinition($this->_table); + + $id = $this->_table->getIdentifier(); + $name = $this->_table->getComponentName() . 'Index'; + + $this->_search->setOption('className', $name); + + foreach ((array) $id as $column) { + $foreign[] = strtolower($this->_table->getComponentName() . '_' . $column); + } + + $foreign = (count($foreign) > 1) ? $foreign : current($foreign); + + $this->hasMany($name, array('local' => $id, 'foreign' => $foreign)); + + $this->addListener(new Doctrine_Search_Listener($this->_search)); + } +} diff --git a/lib/Doctrine/Template/Taggable.php b/lib/Doctrine/Template/Taggable.php new file mode 100644 index 000000000..bc7f4c5f8 --- /dev/null +++ b/lib/Doctrine/Template/Taggable.php @@ -0,0 +1,36 @@ +. + */ + +/** + * Doctrine_Template_Taggable + * + * @author Konsta Vesterinen + * @package Doctrine + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @version $Revision$ + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + */ +class Doctrine_Template_Taggable extends Doctrine_Template +{ + +}