| 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/Block/ |
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)
*/
/**
* Catalogsearch term block
*
* @category Mage
* @package Mage_CatalogSearch
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_CatalogSearch_Block_Term extends Mage_Core_Block_Template
{
protected $_terms;
protected $_minPopularity;
protected $_maxPopularity;
public function __construct()
{
parent::__construct();
}
/**
* Load terms and try to sort it by names
*
* @return Mage_CatalogSearch_Block_Term
*/
protected function _loadTerms()
{
if (empty($this->_terms)) {
$this->_terms = array();
$terms = Mage::getResourceModel('catalogsearch/query_collection')
->setPopularQueryFilter(Mage::app()->getStore()->getId())
->setOrder('popularity', 'DESC')
->setPageSize(100)
->load()
->getItems();
if( count($terms) == 0 ) {
return $this;
}
$this->_maxPopularity = reset($terms)->getPopularity();
$this->_minPopularity = end($terms)->getPopularity();
$range = $this->_maxPopularity - $this->_minPopularity;
$range = ( $range == 0 ) ? 1 : $range;
foreach ($terms as $term) {
if( !$term->getPopularity() ) {
continue;
}
$term->setRatio(($term->getPopularity()-$this->_minPopularity)/$range);
$temp[$term->getName()] = $term;
$termKeys[] = $term->getName();
}
natcasesort($termKeys);
foreach ($termKeys as $termKey) {
$this->_terms[$termKey] = $temp[$termKey];
}
}
return $this;
}
public function getTerms()
{
$this->_loadTerms();
return $this->_terms;
}
public function getSearchUrl($obj)
{
$url = Mage::getModel('core/url');
/*
* url encoding will be done in Url.php http_build_query
* so no need to explicitly called urlencode for the text
*/
$url->setQueryParam('q', $obj->getName());
return $url->getUrl('catalogsearch/result');
}
public function getMaxPopularity()
{
return $this->_maxPopularity;
}
public function getMinPopularity()
{
return $this->_minPopularity;
}
}