. */ /** * Doctrine_Template_Searchable * * @author Konsta Vesterinen * @package Doctrine * @subpackage Template * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @version $Revision$ * @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() { $id = $this->_table->getIdentifier(); $name = $this->_table->getComponentName(); $className = $this->_search->getOption('className'); if (strpos($className, '%CLASS%') !== false) { $this->_search->setOption('className', str_replace('%CLASS%', $name, $className)); $className = $this->_search->getOption('className'); } $this->_search->buildDefinition($this->_table); foreach ((array) $id as $column) { $foreign[] = strtolower(Doctrine::tableize($this->_table->getComponentName()) . '_' . $column); } $foreign = (count($foreign) > 1) ? $foreign : current($foreign); $this->hasMany($className, array('local' => $id, 'foreign' => $foreign)); $this->addListener(new Doctrine_Search_Listener($this->_search)); } }