Method to handle the <category> element for the feed.
void
handleCategory
(
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 <cloud> element for the feed.
void
handleCloud
(
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 <copyright> element for the feed.
void
handleCopyright
(
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 <description> element for the feed.
void
handleDescription
(
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 <image> element for the feed.
void
handleImage
(
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 <language> element for the feed.
void
handleLanguage
(
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 <lastBuildDate> element for the feed.
void
handleLastBuildDate
(
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 <managingEditor> element for the feed.
void
handleManagingEditor
(
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 <pubDate> element for the feed.
void
handlePubDate
(
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 <skipDays> element for the feed.
void
handleSkipDays
(
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 <skipHours> element for the feed.
void
handleSkipHours
(
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 <ttl> element for the feed.
void
handleTtl
(
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 <webmaster> element for the feed.
void
handleWebmaster
(
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: <item>.
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.
Method to parse a string with person data and return a JFeedPerson object.
-
string
$data: The string to parse for a person.
Inherited Methods
Inherited From JFeedParser
JFeedParser::__construct()
JFeedParser::fetchNamespace()
JFeedParser::initialise()
JFeedParser::moveToClosingElement()
JFeedParser::moveToNextElement()
JFeedParser::parse()
JFeedParser::processElement()
JFeedParser::registerNamespace()