| 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/Model/Product/ |
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 Product visibilite model and attribute source model
*
* @category Mage
* @package Mage_Catalog
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Catalog_Model_Product_Visibility extends Varien_Object
{
const VISIBILITY_NOT_VISIBLE = 1;
const VISIBILITY_IN_CATALOG = 2;
const VISIBILITY_IN_SEARCH = 3;
const VISIBILITY_BOTH = 4;
/**
* Reference to the attribute instance
*
* @var Mage_Catalog_Model_Resource_Eav_Attribute
*/
protected $_attribute;
/**
* Initialize object
*
*/
public function __construct()
{
parent::__construct();
$this->setIdFieldName('visibility_id');
}
/**
* Add visible in catalog filter to collection
*
* @deprecated
* @param Mage_Eav_Model_Entity_Collection_Abstract $collection
* @return Mage_Catalog_Model_Product_Visibility
*/
public function addVisibleInCatalogFilterToCollection(Mage_Eav_Model_Entity_Collection_Abstract $collection)
{
$collection->setVisibility($this->getVisibleInCatalogIds());
// $collection->addAttributeToFilter('visibility', array('in'=>$this->getVisibleInCatalogIds()));
return $this;
}
/**
* Add visibility in searchfilter to collection
*
* @deprecated
* @param Mage_Eav_Model_Entity_Collection_Abstract $collection
* @return Mage_Catalog_Model_Product_Visibility
*/
public function addVisibleInSearchFilterToCollection(Mage_Eav_Model_Entity_Collection_Abstract $collection)
{
$collection->setVisibility($this->getVisibleInSearchIds());
//$collection->addAttributeToFilter('visibility', array('in'=>$this->getVisibleInSearchIds()));
return $this;
}
/**
* Add visibility in site filter to collection
*
* @deprecated
* @param Mage_Eav_Model_Entity_Collection_Abstract $collection
* @return Mage_Catalog_Model_Product_Visibility
*/
public function addVisibleInSiteFilterToCollection(Mage_Eav_Model_Entity_Collection_Abstract $collection)
{
$collection->setVisibility($this->getVisibleInSiteIds());
//$collection->addAttributeToFilter('visibility', array('in'=>$this->getVisibleInSiteIds()));
return $this;
}
/**
* Retrieve visible in catalog ids array
*
* @return array
*/
public function getVisibleInCatalogIds()
{
return array(self::VISIBILITY_IN_CATALOG, self::VISIBILITY_BOTH);
}
/**
* Retrieve visible in search ids array
*
* @return array
*/
public function getVisibleInSearchIds()
{
return array(self::VISIBILITY_IN_SEARCH, self::VISIBILITY_BOTH);
}
/**
* Retrieve visible in site ids array
*
* @return array
*/
public function getVisibleInSiteIds()
{
return array(self::VISIBILITY_IN_SEARCH, self::VISIBILITY_IN_CATALOG, self::VISIBILITY_BOTH);
}
/**
* Retrieve option array
*
* @return array
*/
static public function getOptionArray()
{
return array(
self::VISIBILITY_NOT_VISIBLE=> Mage::helper('catalog')->__('Not Visible Individually'),
self::VISIBILITY_IN_CATALOG => Mage::helper('catalog')->__('Catalog'),
self::VISIBILITY_IN_SEARCH => Mage::helper('catalog')->__('Search'),
self::VISIBILITY_BOTH => Mage::helper('catalog')->__('Catalog, Search')
);
}
/**
* Retrieve all options
*
* @return array
*/
static public function getAllOption()
{
$options = self::getOptionArray();
array_unshift($options, array('value'=>'', 'label'=>''));
return $options;
}
/**
* Retireve all options
*
* @return array
*/
static public function getAllOptions()
{
$res = array();
$res[] = array('value'=>'', 'label'=> Mage::helper('catalog')->__('-- Please Select --'));
foreach (self::getOptionArray() as $index => $value) {
$res[] = array(
'value' => $index,
'label' => $value
);
}
return $res;
}
/**
* Retrieve option text
*
* @param int $optionId
* @return string
*/
static public function getOptionText($optionId)
{
$options = self::getOptionArray();
return isset($options[$optionId]) ? $options[$optionId] : null;
}
/**
* Retrieve Column(s) for Flat
*
* @return array
*/
public function getFlatColums()
{
return array($this->getAttribute()->getAttributeCode() => array(
'type' => 'tinyint',
'unsigned' => true,
'is_null' => true,
'default' => null,
'extra' => null
));
}
/**
* Retrieve Indexes for Flat
*
* @return array
*/
public function getFlatIndexes()
{
return array();
}
/**
* Retrieve Select For Flat Attribute update
*
* @param Mage_Catalog_Model_Resource_Eav_Attribute $attribute
* @param int $store
* @return Varien_Db_Select|null
*/
public function getFlatUpdateSelect($store)
{
return Mage::getResourceSingleton('eav/entity_attribute')
->getFlatUpdateSelect($this->getAttribute(), $store);
}
/**
* Set attribute instance
*
* @param Mage_Catalog_Model_Resource_Eav_Attribute $attribute
* @return Mage_Eav_Model_Entity_Attribute_Frontend_Abstract
*/
public function setAttribute($attribute)
{
$this->_attribute = $attribute;
return $this;
}
/**
* Get attribute instance
*
* @return Mage_Catalog_Model_Resource_Eav_Attribute
*/
public function getAttribute()
{
return $this->_attribute;
}
/**
* Add Value Sort To Collection Select
*
* @param Mage_Eav_Model_Entity_Collection_Abstract $collection
* @param string $dir direction
* @return Mage_Eav_Model_Entity_Attribute_Source_Abstract
*/
public function addValueSortToCollection($collection, $dir = 'asc')
{
if ($this->getAttribute()->isScopeGlobal()) {
$tableName = $this->getAttribute()->getAttributeCode() . '_t';
$collection->getSelect()
->joinLeft(
array($tableName => $this->getAttribute()->getBackend()->getTable()),
"`e`.`entity_id`=`{$tableName}`.`entity_id`"
. " AND `{$tableName}`.`attribute_id`='{$this->getAttribute()->getId()}'"
. " AND `{$tableName}`.`store_id`='0'",
array());
$valueExpr = $tableName . '.value';
}
else {
$valueTable1 = $this->getAttribute()->getAttributeCode() . '_t1';
$valueTable2 = $this->getAttribute()->getAttributeCode() . '_t2';
$collection->getSelect()
->joinLeft(
array($valueTable1 => $this->getAttribute()->getBackend()->getTable()),
"`e`.`entity_id`=`{$valueTable1}`.`entity_id`"
. " AND `{$valueTable1}`.`attribute_id`='{$this->getAttribute()->getId()}'"
. " AND `{$valueTable1}`.`store_id`='0'",
array())
->joinLeft(
array($valueTable2 => $this->getAttribute()->getBackend()->getTable()),
"`e`.`entity_id`=`{$valueTable2}`.`entity_id`"
. " AND `{$valueTable2}`.`attribute_id`='{$this->getAttribute()->getId()}'"
. " AND `{$valueTable2}`.`store_id`='{$collection->getStoreId()}'",
array()
);
$valueExpr = new Zend_Db_Expr("IF(`{$valueTable2}`.`value_id`>0, `{$valueTable2}`.`value`, `{$valueTable1}`.`value`)");
}
$collection->getSelect()->order($valueExpr . ' ' . $dir);
return $this;
}
}