[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/vendor/openpsa/universalfeedcreator/lib/Creator/ -> RSSCreator20.php (source)

   1  <?php
   2  
   3  /**
   4   * RSSCreator20 is a FeedCreator that implements RDF Site Summary (RSS) 2.0.
   5   *
   6   * @see     http://backend.userland.com/rss
   7   * @since   1.3
   8   * @author  Kai Blankenhorn <kaib@bitfolge.de>
   9   */
  10  class RSSCreator20 extends RSSCreator091
  11  {
  12  
  13      /**
  14       * RSSCreator20 constructor.
  15       */
  16      public function __construct()
  17      {
  18          parent::__construct();
  19          parent::_setRSSVersion("2.0");
  20      }
  21  
  22  }