Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
itunes.php
Aller à la documentation de ce fichier.
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  */
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 $feed, SimpleXMLElement $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 $entry, SimpleXMLElement $el)
48  {
49 
50  }
51 }