| 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/CatalogIndex/Model/Mysql4/ |
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_CatalogIndex
* @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)
*/
/**
* Attribute index resource model
*
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_CatalogIndex_Model_Mysql4_Attribute extends Mage_CatalogIndex_Model_Mysql4_Abstract
{
protected function _construct()
{
$this->_init('catalogindex/eav', 'index_id');
}
public function getFilteredEntities($attribute, $filter, $entityFilter)
{
$select = $this->_getReadAdapter()->select();
$select
->from($this->getMainTable(), 'entity_id')
->distinct(true)
->where('entity_id in (?)', $entityFilter)
->where('store_id = ?', $this->getStoreId())
->where('attribute_id = ?', $attribute->getId())
->where('value = ?', $filter);
return $this->_getReadAdapter()->fetchCol($select);
}
public function getCount($attribute, $entitySelect)
{
$select = clone $entitySelect;
$select->reset(Zend_Db_Select::COLUMNS);
$select->reset(Zend_Db_Select::ORDER);
$select->reset(Zend_Db_Select::LIMIT_COUNT);
$select->reset(Zend_Db_Select::LIMIT_OFFSET);
$fields = array('count'=>'COUNT(index.entity_id)', 'index.value');
$select->columns($fields)
->join(array('index'=>$this->getMainTable()), 'index.entity_id=e.entity_id', array())
->where('index.store_id = ?', $this->getStoreId())
->where('index.attribute_id = ?', $attribute->getId())
->group('index.value');
$select = $select->__toString();
// $alias = $this->_getReadAdapter()->quoteTableAs($this->getMainTable(), 'index');
$result = $this->_getReadAdapter()->fetchAll($select);
$counts = array();
foreach ($result as $row) {
$counts[$row['value']] = $row['count'];
}
return $counts;
}
public function applyFilterToCollection($collection, $attribute, $value)
{
/**
* Will be used after SQL review
*/
// if ($collection->isEnabledFlat()) {
// $collection->getSelect()->where("e.{$attribute->getAttributeCode()}=?", $value);
// return $this;
// }
$alias = 'attr_index_'.$attribute->getId();
$collection->getSelect()->join(
array($alias => $this->getMainTable()),
$alias.'.entity_id=e.entity_id',
array()
)
->where($alias.'.store_id = ?', $this->getStoreId())
->where($alias.'.attribute_id = ?', $attribute->getId())
->where($alias.'.value = ?', $value);
return $this;
}
}