Source for file namespace.php

Documentation is available at namespace.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.  * Feed Namespace interface.
  14.  *
  15.  * @package     Joomla.Platform
  16.  * @subpackage  Feed
  17.  * @since       12.3
  18.  */
  19. {
  20.     /**
  21.      * Method to handle an element for the feed given that a certain 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 $feedSimpleXMLElement $el);
  31.  
  32.     /**
  33.      * Method to handle the feed entry element for the feed given that a certain namespace is present.
  34.      *
  35.      * @param   JFeedEntry        $entry  The JFeedEntry object being built from the parsed feed entry.
  36.      * @param   SimpleXMLElement  $el     The current XML element object to handle.
  37.      *
  38.      * @return  void 
  39.      *
  40.      * @since   12.3
  41.      */
  42.     public function processElementForFeedEntry(JFeedEntry $entrySimpleXMLElement $el);
  43. }

Documentation generated on Tue, 19 Nov 2013 15:09:17 +0100 by phpDocumentor 1.4.3