| 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/Helper/ |
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 category helper
*
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Catalog_Helper_Product extends Mage_Core_Helper_Url
{
const XML_PATH_PRODUCT_URL_SUFFIX = 'catalog/seo/product_url_suffix';
const XML_PATH_PRODUCT_URL_USE_CATEGORY = 'catalog/seo/product_use_categories';
const XML_PATH_USE_PRODUCT_CANONICAL_TAG = 'catalog/seo/product_canonical_tag';
/**
* Cache for product rewrite suffix
*
* @var array
*/
protected $_productUrlSuffix = array();
protected $_statuses;
protected $_priceBlock;
/**
* Retrieve product view page url
*
* @param mixed $product
* @return string
*/
public function getProductUrl($product)
{
if ($product instanceof Mage_Catalog_Model_Product) {
return $product->getProductUrl();
}
elseif (is_numeric($product)) {
return Mage::getModel('catalog/product')->load($product)->getProductUrl();
}
return false;
}
/**
* Retrieve product price
*
* @param Mage_Catalog_Model_Product $product
* @return float
*/
public function getPrice($product)
{
return $product->getPrice();
}
/**
* Retrieve product final price
*
* @param Mage_Catalog_Model_Product $product
* @return float
*/
public function getFinalPrice($product)
{
return $product->getFinalPrice();
}
/**
* Retrieve base image url
*
* @return string
*/
public function getImageUrl($product)
{
$url = false;
if (!$product->getImage()) {
$url = Mage::getDesign()->getSkinUrl('images/no_image.jpg');
}
elseif ($attribute = $product->getResource()->getAttribute('image')) {
$url = $attribute->getFrontend()->getUrl($product);
}
return $url;
}
/**
* Retrieve small image url
*
* @return unknown
*/
public function getSmallImageUrl($product)
{
$url = false;
if (!$product->getSmallImage()) {
$url = Mage::getDesign()->getSkinUrl('images/no_image.jpg');
}
elseif ($attribute = $product->getResource()->getAttribute('small_image')) {
$url = $attribute->getFrontend()->getUrl($product);
}
return $url;
}
/**
* Retrieve thumbnail image url
*
* @return unknown
*/
public function getThumbnailUrl($product)
{
return '';
}
public function getEmailToFriendUrl($product)
{
$categoryId = null;
if ($category = Mage::registry('current_category')) {
$categoryId = $category->getId();
}
return $this->_getUrl('sendfriend/product/send', array(
'id' => $product->getId(),
'cat_id' => $categoryId
));
}
public function getStatuses()
{
if(is_null($this->_statuses)) {
$this->_statuses = array();//Mage::getModel('catalog/product_status')->getResourceCollection()->load();
}
return $this->_statuses;
}
/**
* Check if a product can be shown
*
* @param Mage_Catalog_Model_Product|int $product
* @return boolean
*/
public function canShow($product, $where = 'catalog')
{
if (is_int($product)) {
$product = Mage::getModel('catalog/product')->load($product);
}
/* @var $product Mage_Catalog_Model_Product */
if (!$product->getId()) {
return false;
}
return $product->isVisibleInCatalog() && $product->isVisibleInSiteVisibility();
}
/**
* Retrieve product rewrite sufix for store
*
* @param int $storeId
* @return string
*/
public function getProductUrlSuffix($storeId = null)
{
if (is_null($storeId)) {
$storeId = Mage::app()->getStore()->getId();
}
if (!isset($this->_productUrlSuffix[$storeId])) {
$this->_productUrlSuffix[$storeId] = Mage::getStoreConfig(self::XML_PATH_PRODUCT_URL_SUFFIX, $storeId);
}
return $this->_productUrlSuffix[$storeId];
}
/**
* Check if <link rel="canonical"> can be used for product
*
* @param $store
* @return bool
*/
public function canUseCanonicalTag($store = null)
{
return Mage::getStoreConfig(self::XML_PATH_USE_PRODUCT_CANONICAL_TAG, $store);
}
}