_feed = new Zend_Feed_Rss('http://meets-ecommerce.de/blog/rss'); } /** * Returns the html * */ protected function _toHtml(){ return $this->_getFeedHtml(); } /** * Reads out the meets-ecommerce feed * * @return string */ private function _getFeedHtml(){ $html = ''; foreach($this->_feed as $item){ $html .= ''; $html .= ' '; $html .= ''; } $html .= '
'.$item->title().' '.$this->__("at %s", Mage::helper('core')->formatDate(new Zend_Date(strtotime($item->pubDate()))).', '.Mage::helper('core')->formatTime(new Zend_Date(strtotime($item->pubDate())))).'

'.$item->description().' '.$this->__("Read more").'

'; return $html; } }