Coverage for Doctrine_Template_Searchable

Back to coverage report

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  * @subpackage  Template
28  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
29  * @version     $Revision$
30  * @link        www.phpdoctrine.com
31  * @since       1.0
32  */
33 class Doctrine_Template_Searchable extends Doctrine_Template
34 {     
35     public function __construct(array $options)
36     {
37         $this->_plugin = new Doctrine_Search($options); 
38     }
39     
40     public function getPlugin()
41     {
42         return $this->_plugin;
43     }
44
45     public function setUp()
46     {
47         $id = $this->_table->getIdentifier();
48         $name = $this->_table->getComponentName();
49         $className = $this->_plugin->getOption('className');
50
51         if (strpos($className, '%CLASS%') !== false) {
52             $this->_plugin->setOption('className', str_replace('%CLASS%', $name, $className));
53             $className = $this->_plugin->getOption('className');
54         }
55         $this->_plugin->setOption('resource', $this->_table);
56         $this->_plugin->buildDefinition();
57
58         $this->hasMany($className, array('local' => $id, 'foreign' => $id));
59
60         $this->addListener(new Doctrine_Search_Listener($this->_plugin));
61     }
62
63     public function batchUpdateIndex($limit = null, $offset = null)
64     {
65         $this->_plugin->batchUpdateIndex($limit, $offset);
66     }
67 }