Source for file Query.php
Documentation is available at Query.php
* $Id: Hook.php 1939 2007-07-05 23:47:48Z zYne $
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @version $Revision: 1939 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @var Doctrine_Query $query the base query
* @var Doctrine_Table $_table the index table
* @param octrine_Table $_table the index table
* @return Doctrine_Query returns the query object associated with this object
if (strpos($text, '^') ===
false) {
$select =
'SELECT COUNT(keyword) AS relevance, ' .
$foreignId;
// organize terms according weights
$select =
'SELECT SUM(sub_relevance) AS relevance, ' .
$foreignId;
$groupby =
'GROUP BY ' .
$foreignId;
$orderby =
'ORDER BY relevance';
$this->_sql =
$select .
' ' .
$from .
' ' .
$where .
' ' .
$groupby .
' ' .
$orderby;
public function parseClause($originalClause, $recursive =
false)
if ($clause !==
$originalClause) {
foreach ($terms as $k =>
$term) {
if ($leavesOnly &&
$recursive) {
if (count($terms) ===
1 &&
! $recursive) {
foreach ($terms as $k =>
$term) {
if (substr($term, 0, 1) ===
'-') {
return '(' .
$return .
')';
if (strpos($term, '(') !==
false) {
return (count($terms) >
1);
if (strpos($term, "'") ===
false) {
$term =
trim($term, "' ");
foreach ($terms as $k =>
$word) {
$where .=
' AND (position + ' .
$k .
') = (SELECT position FROM ' .
$this->_table->getTableName() .
' WHERE ' .
$this->parseWord($word) .
')';
if (strpos($word, '?') !==
false ||
strpos($word, '*') !==
false) {
$where =
'keyword LIKE ?';
$resultSet =
$this->_query->execute();