| 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_Salesrule extends Mage_Rss_Block_Abstract
{
protected function _construct()
{
/*
* setting cache to save the rss for 10 minutes
*/
$this->setCacheKey('rss_catalog_salesrule_'.$this->getStoreId().'_'.$this->_getCustomerGroupId());
$this->setCacheLifetime(600);
}
protected function _toHtml()
{
//store id is store view id
$storeId = $this->_getStoreId();
$websiteId = Mage::app()->getStore($storeId)->getWebsiteId();
//customer group id
$custGroup = $this->_getCustomerGroupId();
$newurl = Mage::getUrl('rss/catalog/salesrule');
$title = Mage::helper('rss')->__('%s - Discounts and Coupons',Mage::app()->getStore($storeId)->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);
$now = date('Y-m-d');
$_saleRule = Mage::getModel('salesrule/rule');
$collection = $_saleRule->getResourceCollection()
->addFieldToFilter('from_date', array('date'=>true, 'to' => $now))
->addFieldToFilter('website_ids',array('finset' => $websiteId))
->addFieldToFilter('customer_group_ids', array('finset' => $custGroup))
->addFieldToFilter('is_rss',1)
->addFieldToFilter('is_active',1)
->setOrder('from_date','desc');
$collection->getSelect()->where('to_date is null or to_date>=?', $now);
$collection->load();
$url = Mage::getUrl('');
foreach ($collection as $sr) {
$description = '<table><tr>'.
'<td style="text-decoration:none;">'.$sr->getDescription().
'<br/>Discount Start Date: '.$this->formatDate($sr->getFromDate(), 'medium').
( $sr->getToDate() ? ('<br/>Discount End Date: '.$this->formatDate($sr->getToDate(), 'medium')):'').
($sr->getCouponCode() ? '<br/> Coupon Code: '.$sr->getCouponCode().'' : '').
'</td>'.
'</tr></table>';
$data = array(
'title' => $sr->getName(),
'description' => $description,
'link' => $url
);
$rssObj->_addEntry($data);
}
return $rssObj->createRssXml();
}
}