| 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/Rss/Block/Catalog/ |
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_Rss
* @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)
*/
/**
* Review form block
*
* @category Mage
* @package Mage_Rss
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Rss_Block_Catalog_Category extends Mage_Rss_Block_Catalog_Abstract
{
protected function _construct()
{
/*
* setting cache to save the rss for 10 minutes
*/
$this->setCacheKey('rss_catalog_category_'
. $this->getRequest()->getParam('cid') . '_'
. $this->getRequest()->getParam('store_id') . '_'
. Mage::getModel('customer/session')->getId()
);
$this->setCacheLifetime(600);
}
protected function _toHtml()
{
$categoryId = $this->getRequest()->getParam('cid');
$storeId = $this->_getStoreId();
$rssObj = Mage::getModel('rss/rss');
if ($categoryId) {
$category = Mage::getModel('catalog/category')->load($categoryId);
if ($category && $category->getId()) {
$layer = Mage::getSingleton('catalog/layer')->setStore($storeId);
//want to load all products no matter anchor or not
$category->setIsAnchor(true);
$newurl = $category->getUrl();
$title = $category->getName();
$data = array('title' => $title,
'description' => $title,
'link' => $newurl,
'charset' => 'UTF-8',
);
$rssObj->_addHeader($data);
$_collection = $category->getCollection();
$_collection->addAttributeToSelect('url_key')
->addAttributeToSelect('name')
->addAttributeToSelect('is_anchor')
->addAttributeToFilter('is_active',1)
->addIdFilter($category->getChildren())
->load()
;
$productCollection = Mage::getModel('catalog/product')->getCollection();
$currentyCateogry = $layer->setCurrentCategory($category);
$layer->prepareProductCollection($productCollection);
$productCollection->addCountToCategories($_collection);
$category->getProductCollection()->setStoreId($storeId);
/*
only load latest 50 products
*/
$_productCollection = $currentyCateogry
->getProductCollection()
->addAttributeToSort('updated_at','desc')
->setVisibility(Mage::getSingleton('catalog/product_visibility')->getVisibleInCatalogIds())
->setCurPage(1)
->setPageSize(50)
;
if ($_productCollection->getSize()>0) {
$args = array('rssObj' => $rssObj);
foreach ($_productCollection as $_product) {
$args['product'] = $_product;
$this->addNewItemXmlCallback($args);
}
}
}
}
return $rssObj->createRssXml();
}
/**
* Preparing data and adding to rss object
*
* @param array $args
*/
public function addNewItemXmlCallback($args)
{
$product = $args['product'];
$product->setAllowedInRss(true);
$product->setAllowedPriceInRss(true);
Mage::dispatchEvent('rss_catalog_category_xml_callback', $args);
if (!$product->getAllowedInRss()) {
return;
}
$description = '<table><tr>'
. '<td><a href="'.$product->getProductUrl().'"><img src="'
. $this->helper('catalog/image')->init($product, 'thumbnail')->resize(75, 75)
. '" border="0" align="left" height="75" width="75"></a></td>'
. '<td style="text-decoration:none;">' . $product->getDescription();
if ($product->getAllowedPriceInRss()) {
$description.= $this->getPriceHtml($product,true);
}
$description .= '</td></tr></table>';
$rssObj = $args['rssObj'];
$data = array(
'title' => $product->getName(),
'link' => $product->getProductUrl(),
'description' => $description,
);
$rssObj->_addEntry($data);
}
}