Method to handle the <author> element for the feed.
void
handleAuthor
(
JFeed $feed,
SimpleXMLElement $el)
-
JFeed
$feed: The JFeed object being built from the parsed feed.
-
SimpleXMLElement
$el: The current XML element object to handle.
Method to handle the <contributor> element for the feed.
void
handleContributor
(
JFeed $feed,
SimpleXMLElement $el)
-
JFeed
$feed: The JFeed object being built from the parsed feed.
-
SimpleXMLElement
$el: The current XML element object to handle.
Method to handle the <generator> element for the feed.
void
handleGenerator
(
JFeed $feed,
SimpleXMLElement $el)
-
JFeed
$feed: The JFeed object being built from the parsed feed.
-
SimpleXMLElement
$el: The current XML element object to handle.
Method to handle the <id> element for the feed.
void
handleId
(
JFeed $feed,
SimpleXMLElement $el)
-
JFeed
$feed: The JFeed object being built from the parsed feed.
-
SimpleXMLElement
$el: The current XML element object to handle.
Method to handle the <link> element for the feed.
void
handleLink
(
JFeed $feed,
SimpleXMLElement $el)
-
JFeed
$feed: The JFeed object being built from the parsed feed.
-
SimpleXMLElement
$el: The current XML element object to handle.
Method to handle the <rights> element for the feed.
void
handleRights
(
JFeed $feed,
SimpleXMLElement $el)
-
JFeed
$feed: The JFeed object being built from the parsed feed.
-
SimpleXMLElement
$el: The current XML element object to handle.
Method to handle the <subtitle> element for the feed.
void
handleSubtitle
(
JFeed $feed,
SimpleXMLElement $el)
-
JFeed
$feed: The JFeed object being built from the parsed feed.
-
SimpleXMLElement
$el: The current XML element object to handle.
Method to handle the <title> element for the feed.
void
handleTitle
(
JFeed $feed,
SimpleXMLElement $el)
-
JFeed
$feed: The JFeed object being built from the parsed feed.
-
SimpleXMLElement
$el: The current XML element object to handle.
Method to handle the <updated> element for the feed.
void
handleUpdated
(
JFeed $feed,
SimpleXMLElement $el)
-
JFeed
$feed: The JFeed object being built from the parsed feed.
-
SimpleXMLElement
$el: The current XML element object to handle.
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.
void
initialise
()
Redefinition of:
- JFeedParser::initialise()
- Method to initialise the feed for parsing. If child parsers need to detect versions or other such things this is where you'll want to implement that logic.
Method to handle the feed entry element for the feed: <entry>.
void
processFeedEntry
(
JFeedEntry $entry,
SimpleXMLElement $el)
-
JFeedEntry
$entry: The JFeedEntry object being built from the parsed feed entry.
-
SimpleXMLElement
$el: The current XML element object to handle.
Inherited Methods
Inherited From JFeedParser
JFeedParser::__construct()
JFeedParser::fetchNamespace()
JFeedParser::initialise()
JFeedParser::moveToClosingElement()
JFeedParser::moveToNextElement()
JFeedParser::parse()
JFeedParser::processElement()
JFeedParser::registerNamespace()