~patrix-sbs/oraculum/git

« back to all changes in this revision

Viewing changes to models/doctrine/lib/Doctrine/Template/Searchable.php

  • Committer: Patrick Kaminski
  • Date: 2009-09-02 02:33:07 UTC
  • Revision ID: git-v1:943803254fca67bfb4c0374422b1b836b14dc518
Tags: v0.1a
Sending Oraculum Framework v0.1 alpha

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.org>.
 
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.org
 
31
 * @since       1.0
 
32
 */
 
33
class Doctrine_Template_Searchable extends Doctrine_Template
 
34
{
 
35
    /**
 
36
     * __construct
 
37
     *
 
38
     * @param array $options 
 
39
     * @return void
 
40
     */
 
41
    public function __construct(array $options = array())
 
42
    {
 
43
        $this->_plugin = new Doctrine_Search($options); 
 
44
    }
 
45
 
 
46
    /**
 
47
     * Setup the Searchable template behavior
 
48
     *
 
49
     * @return void
 
50
     */
 
51
    public function setUp()
 
52
    {
 
53
        $this->_plugin->initialize($this->_table);
 
54
 
 
55
        $this->addListener(new Doctrine_Search_Listener($this->_plugin));
 
56
    }
 
57
 
 
58
    /**
 
59
     * Make the batchUpdateIndex() function available to the template so Doctrine_Record child classes
 
60
     * with the behavior enabled can all the function
 
61
     *
 
62
     * @param integer $limit 
 
63
     * @param integer $offset 
 
64
     * @return void
 
65
     */
 
66
    public function batchUpdateIndex($limit = null, $offset = null)
 
67
    {
 
68
        $this->_plugin->batchUpdateIndex($limit, $offset);
 
69
    }
 
70
 
 
71
    /**
 
72
     * Proxy method so the batch updating can be called from table classes
 
73
     *
 
74
     * @param integer $limit 
 
75
     * @param integer $offset 
 
76
     * @return void
 
77
     */
 
78
    public function batchUpdateIndexTableProxy($limit = null, $offset = null)
 
79
    {
 
80
        $this->batchUpdateIndex($limit, $offset);
 
81
    }
 
82
 
 
83
    /**
 
84
     * Searchable keyword search proxy for Doctrine_Table
 
85
     * 
 
86
     * @param string $string Keyword string to search for
 
87
     * @param Doctrine_Query $query Query object to alter. Adds where condition to limit the results using the search index
 
88
     * @return mixed The Doctrine_Collection or array of ids and relevancy
 
89
     */
 
90
    public function searchTableProxy($string, $query = null)
 
91
    {
 
92
        return $this->_plugin->search($string, $query);
 
93
    }
 
94
}
 
 
b'\\ No newline at end of file'