Source for file itunes.php

Documentation is available at itunes.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Platform
  4.  * @subpackage  Feed
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
  7.  * @license     GNU General Public License version 2 or later; see LICENSE
  8.  */
  9.  
  10. defined('JPATH_PLATFORM'or die;
  11.  
  12. /**
  13.  * RSS Feed Parser Namespace handler for iTunes.
  14.  *
  15.  * @package     Joomla.Platform
  16.  * @subpackage  Feed
  17.  * @see         http://www.apple.com/itunes/podcasts/specs.html
  18.  * @since       12.3
  19.  */
  20. class JFeedParserRssItunes implements JFeedParserNamespace
  21. {
  22.     /**
  23.      * Method to handle an element for the feed given that the itunes namespace is present.
  24.      *
  25.      * @param   JFeed             $feed  The JFeed object being built from the parsed feed.
  26.      * @param   SimpleXMLElement  $el    The current XML element object to handle.
  27.      *
  28.      * @return  void 
  29.      *
  30.      * @since   12.3
  31.      */
  32.     public function processElementForFeed(JFeed $feedSimpleXMLElement $el)
  33.     {
  34.  
  35.     }
  36.  
  37.     /**
  38.      * Method to handle the feed entry element for the feed given that the itunes namespace is present.
  39.      *
  40.      * @param   JFeedEntry        $entry  The JFeedEntry object being built from the parsed feed entry.
  41.      * @param   SimpleXMLElement  $el     The current XML element object to handle.
  42.      *
  43.      * @return  void 
  44.      *
  45.      * @since   12.3
  46.      */
  47.     public function processElementForFeedEntry(JFeedEntry $entrySimpleXMLElement $el)
  48.     {
  49.  
  50.     }
  51. }

Documentation generated on Tue, 19 Nov 2013 15:06:03 +0100 by phpDocumentor 1.4.3