0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.1.3-2
/
standard
/
htdocs
/
app
/
code
/
core
/
Mage
/
Rss
/
Block
/
Order
/
[
Home
]
File: New.php
<?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. * * @category Mage * @package Mage_Rss * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.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_Order_New extends Mage_Core_Block_Template { protected function _construct() { /* * setting cache to save the rss for 10 minutes */ $this->setCacheKey('rss_order_new'); $this->setCacheLifetime(600); } protected function _toHtml() { $order = Mage::getModel('sales/order'); $passDate = $order->getResource()->formatDate(mktime(0,0,0,date('m'),date('d')-7)); $newurl = Mage::helper('adminhtml')->getUrl('adminhtml/sales_order', array('_secure' => true)); $title = Mage::helper('rss')->__('New Orders'); $rssObj = Mage::getModel('rss/rss'); $data = array('title' => $title, 'description' => $title, 'link' => $newurl, 'charset' => 'UTF-8', ); $rssObj->_addHeader($data); $collection = $order->getCollection() ->addAttributeToFilter('created_at', array('date'=>true, 'from'=> $passDate)) ->addAttributeToSort('created_at','desc') ; $detailBlock = Mage::getBlockSingleton('rss/order_details'); Mage::getSingleton('core/resource_iterator') ->walk($collection->getSelect(), array(array($this, 'addNewOrderXmlCallback')), array('rssObj'=> $rssObj, 'order'=>$order , 'detailBlock' => $detailBlock)); return $rssObj->createRssXml(); } public function addNewOrderXmlCallback($args) { $rssObj = $args['rssObj']; $order = $args['order']; $detailBlock = $args['detailBlock']; $order->unsetData()->load($args['row']['entity_id']); if ($order && $order->getId()) { $title = Mage::helper('rss')->__('Order #%s created at %s', $order->getIncrementId(), $this->formatDate($order->getCreatedAt())); $url = Mage::helper('adminhtml')->getUrl('adminhtml/sales_order/view', array('_secure' => true, 'order_id' => $order->getId())); $detailBlock->setOrder($order); $data = array( 'title' => $title, 'link' => $url, 'description' => $detailBlock->toHtml() ); $rssObj->_addEntry($data); } } }