Source for file Searchable.php

Documentation is available at Searchable.php

  1. <?php
  2. /*
  3.  *  $Id$
  4.  *
  5.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  7.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  8.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  9.  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  10.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  11.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  12.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  13.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  14.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  15.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  16.  *
  17.  * This software consists of voluntary contributions made by many individuals
  18.  * and is licensed under the LGPL. For more information, see
  19.  * <http://www.phpdoctrine.com>.
  20.  */
  21.  
  22. /**
  23.  * Doctrine_Template_Searchable
  24.  *
  25.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  26.  * @package     Doctrine
  27.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  28.  * @version     $Revision$
  29.  * @category    Object Relational Mapping
  30.  * @link        www.phpdoctrine.com
  31.  * @since       1.0
  32.  */
  33. {     
  34.     protected $_search;
  35.  
  36.     public function __construct(array $options)
  37.     {
  38.         $this->_search new Doctrine_Search($options);
  39.     }
  40.     public function setUp()
  41.     {
  42.         $id $this->_table->getIdentifier();
  43.         $name $this->_table->getComponentName();
  44.         $className $this->_search->getOption('className');
  45.  
  46.         if (strpos($className'%CLASS%'!== false{
  47.             $this->_search->setOption('className'str_replace('%CLASS%'$name$className));
  48.             $className $this->_search->getOption('className');
  49.         }
  50.         $this->_search->buildDefinition($this->_table);
  51.  
  52.         foreach ((array) $id as $column{
  53.             $foreign[strtolower($this->_table->getComponentName('_' $column);
  54.         }
  55.  
  56.         $foreign (count($foreign1$foreign current($foreign);
  57.  
  58.         $this->hasMany($classNamearray('local' => $id'foreign' => $foreign));
  59.  
  60.         $this->addListener(new Doctrine_Search_Listener($this->_search));
  61.     }
  62. }