| 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/Catalog/Block/Layer/ |
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_Catalog
* @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 layered navigation view block
*
* @category Mage
* @package Mage_Catalog
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Catalog_Block_Layer_View extends Mage_Core_Block_Template
{
/**
* Get attribute filter block name
*
* @return string
*/
protected function _getAttributeFilterBlockName()
{
return 'catalog/layer_filter_attribute';
}
/**
* Prepare child blocks
*
* @return Mage_Catalog_Block_Layer_View
*/
protected function _prepareLayout()
{
$stateBlock = $this->getLayout()->createBlock('catalog/layer_state')
->setLayer($this->getLayer());
$categryBlock = $this->getLayout()->createBlock('catalog/layer_filter_category')
->setLayer($this->getLayer())
->init();
$this->setChild('layer_state', $stateBlock);
$this->setChild('category_filter', $categryBlock);
$filterableAttributes = $this->_getFilterableAttributes();
foreach ($filterableAttributes as $attribute) {
$filterBlockName = $this->_getAttributeFilterBlockName();
if ($attribute->getAttributeCode() == 'price') {
$filterBlockName = 'catalog/layer_filter_price';
} else if ($attribute->getBackendType() == 'decimal') {
$filterBlockName = 'catalog/layer_filter_decimal';
}
$this->setChild($attribute->getAttributeCode().'_filter',
$this->getLayout()->createBlock($filterBlockName)
->setLayer($this->getLayer())
->setAttributeModel($attribute)
->init());
}
$this->getLayer()->apply();
return parent::_prepareLayout();
}
/**
* Get layer object
*
* @return Mage_Catalog_Model_Layer
*/
public function getLayer()
{
return Mage::getSingleton('catalog/layer');
}
/**
* Get all fiterable attributes of current category
*
* @return array
*/
protected function _getFilterableAttributes()
{
$attributes = $this->getData('_filterable_attributes');
if (is_null($attributes)) {
$attributes = $this->getLayer()->getFilterableAttributes();
$this->setData('_filterable_attributes', $attributes);
}
return $attributes;
}
/**
* Get layered navigation state html
*
* @return string
*/
public function getStateHtml()
{
return $this->getChildHtml('layer_state');
}
/**
* Get all layer filters
*
* @return array
*/
public function getFilters()
{
$filters = array();
if ($categoryFilter = $this->_getCategoryFilter()) {
$filters[] = $categoryFilter;
}
$filterableAttributes = $this->_getFilterableAttributes();
foreach ($filterableAttributes as $attribute) {
$filters[] = $this->getChild($attribute->getAttributeCode().'_filter');
}
return $filters;
}
/**
* Get category filter block
*
* @return Mage_Catalog_Block_Layer_Filter_Category
*/
protected function _getCategoryFilter()
{
return $this->getChild('category_filter');
}
/**
* Check availability display layer options
*
* @return bool
*/
public function canShowOptions()
{
foreach ($this->getFilters() as $filter) {
if ($filter->getItemsCount()) {
return true;
}
}
return false;
}
/**
* Check availability display layer block
*
* @return bool
*/
public function canShowBlock()
{
return $this->canShowOptions() || count($this->getLayer()->getState()->getFilters());
}
/**
* Retrieve Price Filter block
*
* @return Mage_Catalog_Block_Layer_Filter_Price
*/
protected function _getPriceFilter()
{
return $this->getChild('_price_filter');
}
}