| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/CatalogSearch/Model/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_CatalogSearch
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Catalog advanced search model
*
* @category Mage
* @package Mage_CatalogSearch
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_CatalogSearch_Model_Fulltext extends Mage_Core_Model_Abstract
{
const SEARCH_TYPE_LIKE = 1;
const SEARCH_TYPE_FULLTEXT = 2;
const SEARCH_TYPE_COMBINE = 3;
const XML_PATH_CATALOG_SEARCH_TYPE = 'catalog/search/search_type';
protected function _construct()
{
$this->_init('catalogsearch/fulltext');
}
/**
* Regenerate all Stores index
*
* Examples:
* (null, null) => Regenerate index for all stores
* (1, null) => Regenerate index for store Id=1
* (1, 2) => Regenerate index for product Id=2 and its store view Id=1
* (null, 2) => Regenerate index for all store views of product Id=2
*
* @param int $storeId Store View Id
* @param int $productId Product Entity Id
* @return Mage_CatalogSearch_Model_Fulltext
*/
public function rebuildIndex($storeId = null, $productId = null)
{
$this->getResource()->rebuildIndex($storeId, $productId);
return $this;
}
/**
* Delete index data
*
* Examples:
* (null, null) => Clean index of all stores
* (1, null) => Clean index of store Id=1
* (1, 2) => Clean index of product Id=2 and its store view Id=1
* (null, 2) => Clean index of all store views of product Id=2
*
* @param int $storeId Store View Id
* @param int $productId Product Entity Id
* @return Mage_CatalogSearch_Model_Fulltext
*/
public function cleanIndex($storeId = null, $productId = null)
{
$this->getResource()->cleanIndex($storeId, $productId);
return $this;
}
/**
* Reset search results cache
*
* @return Mage_CatalogSearch_Model_Fulltext
*/
public function resetSearchResults()
{
$this->getResource()->resetSearchResults();
return $this;
}
/**
* Prepare results for query
*
* @param Mage_CatalogSearch_Model_Query $query
* @return Mage_CatalogSearch_Model_Fulltext
*/
public function prepareResult($query = null)
{
if (!$query instanceof Mage_CatalogSearch_Model_Query) {
$query = Mage::helper('catalogsearch')->getQuery();
}
$queryText = Mage::helper('catalogsearch')->getQueryText();
if ($query->getSynonymFor()) {
$queryText = $query->getSynonymFor();
}
$this->getResource()->prepareResult($this, $queryText, $query);
return $this;
}
/**
* Retrieve search type
*
* @param int $storeId
* @return int
*/
public function getSearchType($storeId = null)
{
return Mage::getStoreConfig(self::XML_PATH_CATALOG_SEARCH_TYPE, $storeId);
}
}