Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
namespace.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  * Feed Namespace interface.
14  *
15  * @package Joomla.Platform
16  * @subpackage Feed
17  * @since 12.3
18  */
20 {
21  /**
22  * Method to handle an element for the feed given that a certain namespace is present.
23  *
24  * @param JFeed $feed The JFeed object being built from the parsed feed.
25  * @param SimpleXMLElement $el The current XML element object to handle.
26  *
27  * @return void
28  *
29  * @since 12.3
30  */
31  public function processElementForFeed(JFeed $feed, SimpleXMLElement $el);
32 
33  /**
34  * Method to handle the feed entry element for the feed given that a certain namespace is present.
35  *
36  * @param JFeedEntry $entry The JFeedEntry object being built from the parsed feed entry.
37  * @param SimpleXMLElement $el The current XML element object to handle.
38  *
39  * @return void
40  *
41  * @since 12.3
42  */
43  public function processElementForFeedEntry(JFeedEntry $entry, SimpleXMLElement $el);
44 }