Exemplo n.º 1
0
 /**
  * Outputs feed to the browser - needed for on-the-fly feed generation (like it is done in WordPress, etc.)
  *
  * @param    $format  string  format the feed should comply to. Valid values are:
  *                           "PIE0.1" (deprecated), "mbox", "RSS0.91", "RSS1.0", "RSS2.0", "OPML", "ATOM0.3".
  */
 function outputFeed($format = 'RSS0.91')
 {
     $this->_setFormat($format);
     $this->_sendMIME();
     $this->_feed->outputFeed();
 }