. */ /** * 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)); } }