Source for file atom.php
Documentation is available at atom.php
* @package Joomla.Platform
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
* ATOM Feed Parser class.
* @package Joomla.Platform
* @link http://www.atomenabled.org/developers/syndication/
* @var string The feed format version.
* Method to handle the <author> element for the feed.
* @param JFeed $feed The JFeed object being built from the parsed feed.
* @param SimpleXMLElement $el The current XML element object to handle.
protected function handleAuthor(JFeed $feed, SimpleXMLElement $el)
// Set the author information from the XML element.
$feed->setAuthor((string)
$el->name, (string)
$el->email, (string)
$el->uri);
* Method to handle the <contributor> element for the feed.
* @param JFeed $feed The JFeed object being built from the parsed feed.
* @param SimpleXMLElement $el The current XML element object to handle.
$feed->addContributor((string)
$el->name, (string)
$el->email, (string)
$el->uri);
* Method to handle the <generator> element for the feed.
* @param JFeed $feed The JFeed object being built from the parsed feed.
* @param SimpleXMLElement $el The current XML element object to handle.
$feed->generator = (string)
$el;
* Method to handle the <id> element for the feed.
* @param JFeed $feed The JFeed object being built from the parsed feed.
* @param SimpleXMLElement $el The current XML element object to handle.
protected function handleId(JFeed $feed, SimpleXMLElement $el)
$feed->uri = (string)
$el;
* Method to handle the <link> element for the feed.
* @param JFeed $feed The JFeed object being built from the parsed feed.
* @param SimpleXMLElement $el The current XML element object to handle.
protected function handleLink(JFeed $feed, SimpleXMLElement $el)
$link->uri = (string)
$el['href'];
$link->language = (string)
$el['hreflang'];
$link->length = (int)
$el['length'];
$link->relation = (string)
$el['rel'];
$link->title = (string)
$el['title'];
$link->type = (string)
$el['type'];
* Method to handle the <rights> element for the feed.
* @param JFeed $feed The JFeed object being built from the parsed feed.
* @param SimpleXMLElement $el The current XML element object to handle.
protected function handleRights(JFeed $feed, SimpleXMLElement $el)
$feed->copyright = (string)
$el;
* Method to handle the <subtitle> element for the feed.
* @param JFeed $feed The JFeed object being built from the parsed feed.
* @param SimpleXMLElement $el The current XML element object to handle.
$feed->description = (string)
$el;
* Method to handle the <title> element for the feed.
* @param JFeed $feed The JFeed object being built from the parsed feed.
* @param SimpleXMLElement $el The current XML element object to handle.
protected function handleTitle(JFeed $feed, SimpleXMLElement $el)
$feed->title = (string)
$el;
* Method to handle the <updated> element for the feed.
* @param JFeed $feed The JFeed object being built from the parsed feed.
* @param SimpleXMLElement $el The current XML element object to handle.
protected function handleUpdated(JFeed $feed, SimpleXMLElement $el)
$feed->updatedDate = (string)
$el;
* Method to initialise the feed for parsing. Here we detect the version and advance the stream
* reader so that it is ready to parse feed elements.
// Read the version attribute.
$this->version =
($this->stream->getAttribute('version') ==
'0.3') ?
'0.3' :
'1.0';
// We want to move forward to the first element after the root element.
* Method to handle the feed entry element for the feed: <entry>.
* @param JFeedEntry $entry The JFeedEntry object being built from the parsed feed entry.
* @param SimpleXMLElement $el The current XML element object to handle.
$entry->uri = (string)
$el->id;
$entry->title = (string)
$el->title;
$entry->updatedDate = (string)
$el->updated;
$entry->content = (string)
$el->summary;
Documentation generated on Tue, 19 Nov 2013 14:54:08 +0100 by phpDocumentor 1.4.3