1 <?php
2 /**
3 * @package Joomla.Platform
4 * @subpackage Feed
5 *
6 * @copyright Copyright (C) 2005 - 2017 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 MediaRSS.
14 *
15 * @link http://video.search.yahoo.com/mrss
16 * @since 12.3
17 */
18 class JFeedParserRssMedia implements JFeedParserNamespace
19 {
20 /**
21 * Method to handle an element for the feed given that the media namespace is present.
22 *
23 * @param JFeed $feed The JFeed object being built from the parsed feed.
24 * @param SimpleXMLElement $el The current XML element object to handle.
25 *
26 * @return void
27 *
28 * @since 12.3
29 */
30 public function processElementForFeed(JFeed $feed, SimpleXMLElement $el)
31 {
32 return;
33 }
34
35 /**
36 * Method to handle the feed entry element for the feed given that the media namespace is present.
37 *
38 * @param JFeedEntry $entry The JFeedEntry object being built from the parsed feed entry.
39 * @param SimpleXMLElement $el The current XML element object to handle.
40 *
41 * @return void
42 *
43 * @since 12.3
44 */
45 public function processElementForFeedEntry(JFeedEntry $entry, SimpleXMLElement $el)
46 {
47 return;
48 }
49 }
50