00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 class Mage_Rss_Model_Rss
00036 {
00037 protected $_feedArray = array();
00038
00039 public function _addHeader($data = array())
00040 {
00041 $this->_feedArray = $data;
00042 return $this;
00043 }
00044
00045 public function _addEntries($entries)
00046 {
00047 $this->_feedArray['entries'] = $entries;
00048 return $this;
00049 }
00050
00051 public function _addEntry($entry)
00052 {
00053 $this->_feedArray['entries'][] = $entry;
00054 return $this;
00055 }
00056
00057 public function getFeedArray()
00058 {
00059 return $this->_feedArray;
00060 }
00061
00062 public function createRssXml()
00063 {
00064 try {
00065 $rssFeedFromArray = Zend_Feed::importArray($this->getFeedArray(), 'rss');
00066 return $rssFeedFromArray->saveXML();
00067 } catch (Exception $e) {
00068 return Mage::helper('rss')->__('Error in processing xml. %s',$e->getMessage());
00069 }
00070 }
00071 }