| 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_New extends Mage_Rss_Block_Catalog_Abstract
{
protected function _construct()
{
/*
* setting cache to save the rss for 10 minutes
*/
//$this->setCacheKey('rss_catalog_new_'.$this->_getStoreId());
//$this->setCacheLifetime(600);
}
protected function _toHtml()
{
$storeId = $this->_getStoreId();
$newurl = Mage::getUrl('rss/catalog/new/store_id/' . $storeId);
$title = Mage::helper('rss')->__('New Products from %s',Mage::app()->getStore()->getGroup()->getName());
$lang = Mage::getStoreConfig('general/locale/code');
$rssObj = Mage::getModel('rss/rss');
$data = array('title' => $title,
'description' => $title,
'link' => $newurl,
'charset' => 'UTF-8',
'language' => $lang
);
$rssObj->_addHeader($data);
/*
oringinal price - getPrice() - inputed in admin
special price - getSpecialPrice()
getFinalPrice() - used in shopping cart calculations
*/
$product = Mage::getModel('catalog/product');
$todayDate = $product->getResource()->formatDate(time());
$products = $product->getCollection()
->setStoreId($storeId)
->addStoreFilter()
->addAttributeToFilter('news_from_date', array('date'=>true, 'to'=> $todayDate))
->addAttributeToFilter(array(array('attribute'=>'news_to_date', 'date'=>true, 'from'=>$todayDate), array('attribute'=>'news_to_date', 'is' => new Zend_Db_Expr('null'))),'','left')
->addAttributeToSort('news_from_date','desc')
->addAttributeToSelect(array('name', 'short_description', 'description', 'thumbnail'), 'inner')
->addAttributeToSelect(array('price', 'special_price', 'special_from_date', 'special_to_date'), 'left')
->applyFrontendPriceLimitations()
;
$products->setVisibility(Mage::getSingleton('catalog/product_visibility')->getVisibleInCatalogIds());
/*
using resource iterator to load the data one by one
instead of loading all at the same time. loading all data at the same time can cause the big memory allocation.
*/
Mage::getSingleton('core/resource_iterator')
->walk($products->getSelect(), array(array($this, 'addNewItemXmlCallback')), array('rssObj'=> $rssObj, 'product'=>$product));
return $rssObj->createRssXml();
}
/**
* Preparing data and adding to rss object
*
* @param array $args
*/
public function addNewItemXmlCallback($args)
{
$product = $args['product'];
$product->setAllowedInRss(true);
Mage::dispatchEvent('rss_catalog_new_xml_callback', $args);
if (!$product->getAllowedInRss()) {
//Skip adding product to RSS
return;
}
$allowedPriceInRss = $product->getAllowedPriceInRss();
//$product->unsetData()->load($args['row']['entity_id']);
$product->setData($args['row']);
$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 ($allowedPriceInRss) {
$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);
}
}