| 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
*
* @category Mage
* @package Mage_Catalog
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Catalog_Helper_Category extends Mage_Core_Helper_Abstract
{
const XML_PATH_CATEGORY_URL_SUFFIX = 'catalog/seo/category_url_suffix';
const XML_PATH_USE_CATEGORY_CANONICAL_TAG = 'catalog/seo/category_canonical_tag';
/**
* Store categories cache
*
* @var array
*/
protected $_storeCategories = array();
/**
* Cache for category rewrite suffix
*
* @var array
*/
protected $_categoryUrlSuffix = array();
/**
* Retrieve current store categories
*
* @param boolean|string $sorted
* @param boolean $asCollection
* @return Varien_Data_Tree_Node_Collection|Mage_Catalog_Model_Resource_Eav_Mysql4_Category_Collection|array
*/
public function getStoreCategories($sorted=false, $asCollection=false, $toLoad=true)
{
$parent = Mage::app()->getStore()->getRootCategoryId();
$cacheKey = sprintf('%d-%d-%d-%d', $parent, $sorted, $asCollection, $toLoad);
if (isset($this->_storeCategories[$cacheKey])) {
return $this->_storeCategories[$cacheKey];
}
/**
* Check if parent node of the store still exists
*/
$category = Mage::getModel('catalog/category');
/* @var $category Mage_Catalog_Model_Category */
if (!$category->checkId($parent)) {
if ($asCollection) {
return new Varien_Data_Collection();
}
return array();
}
$recursionLevel = max(0, (int) Mage::app()->getStore()->getConfig('catalog/navigation/max_depth'));
$storeCategories = $category->getCategories($parent, $recursionLevel, $sorted, $asCollection, $toLoad);
$this->_storeCategories[$cacheKey] = $storeCategories;
return $storeCategories;
}
/**
* Retrieve category url
*
* @param Mage_Catalog_Model_Category $category
* @return string
*/
public function getCategoryUrl($category)
{
if ($category instanceof Mage_Catalog_Model_Category) {
return $category->getUrl();
}
return Mage::getModel('catalog/category')
->setData($category->getData())
->getUrl();
}
/**
* Check if a category can be shown
*
* @param Mage_Catalog_Model_Category|int $category
* @return boolean
*/
public function canShow($category)
{
if (is_int($category)) {
$category = Mage::getModel('catalog/category')->load($category);
}
if (!$category->getId()) {
return false;
}
if (!$category->getIsActive()) {
return false;
}
if (!$category->isInRootCategoryList()) {
return false;
}
return true;
}
/**
* Retrieve category rewrite sufix for store
*
* @param int $storeId
* @return string
*/
public function getCategoryUrlSuffix($storeId = null)
{
if (is_null($storeId)) {
$storeId = Mage::app()->getStore()->getId();
}
if (!isset($this->_categoryUrlSuffix[$storeId])) {
$this->_categoryUrlSuffix[$storeId] = Mage::getStoreConfig(self::XML_PATH_CATEGORY_URL_SUFFIX, $storeId);
}
return $this->_categoryUrlSuffix[$storeId];
}
/**
* Retrieve clear url for category as parrent
*
* @param string $url
* @param bool $slash
* @param int $storeId
*
* @return string
*/
public function getCategoryUrlPath($urlPath, $slash = false, $storeId = null)
{
if (!$this->getCategoryUrlSuffix($storeId)) {
return $urlPath;
}
if ($slash) {
$regexp = '#('.preg_quote($this->getCategoryUrlSuffix($storeId), '#').')/$#i';
$replace = '/';
}
else {
$regexp = '#('.preg_quote($this->getCategoryUrlSuffix($storeId), '#').')$#i';
$replace = '';
}
return preg_replace($regexp, $replace, $urlPath);
}
/**
* Check if <link rel="canonical"> can be used for category
*
* @param $store
* @return bool
*/
public function canUseCanonicalTag($store = null)
{
return Mage::getStoreConfig(self::XML_PATH_USE_CATEGORY_CANONICAL_TAG, $store);
}
}