MediaWiki REL1_35
|
A base class for outputting syndication feeds (e.g. More...
Public Member Functions | |
__construct ( $title, $description, $url, $date='', $author='', $comments='') | |
getAuthor () | |
Get the author of this item; already xml-encoded. | |
getAuthorUnescaped () | |
Get the author of this item without any escaping. | |
getComments () | |
Get the comment of this item; already xml-encoded. | |
getCommentsUnescaped () | |
Get the comment of this item without any escaping. | |
getDate () | |
Get the date of this item. | |
getDescription () | |
Get the description of this item; already xml-encoded. | |
getDescriptionUnescaped () | |
Get the description of this item without any escaping. | |
getLanguage () | |
Get the language of this item. | |
getTitle () | |
Get the title of this item; already xml-encoded. | |
getUniqueID () | |
Get the unique id of this item; already xml-encoded. | |
getUniqueIdUnescaped () | |
Get the unique id of this item, without any escaping. | |
getUrl () | |
Get the URL of this item; already xml-encoded. | |
getUrlUnescaped () | |
Get the URL of this item without any escaping. | |
setUniqueId ( $uniqueId, $rssIsPermalink=false) | |
Set the unique id of an item. | |
xmlEncode ( $string) | |
Encode $string so that it can be safely embedded in a XML document. | |
Static Public Member Functions | |
static | stripComment ( $text) |
Quickie hack... strip out wikilinks to more legible form from the comment. | |
Public Attributes | |
$author | |
$comments | |
$date | |
$description | |
$rssIsPermalink = false | |
Title | $title |
$uniqueId | |
$url | |
A base class for outputting syndication feeds (e.g.
RSS and other formats).
Definition at line 33 of file FeedItem.php.
FeedItem::__construct | ( | $title, | |
$description, | |||
$url, | |||
$date = '' , |
|||
$author = '' , |
|||
$comments = '' |
|||
) |
string | Title | $title | Item's title |
string | $description | |
string | $url | URL uniquely designating the item. |
string | $date | Item's date |
string | $author | Author's user name |
string | $comments |
Reimplemented in ChannelFeed.
Definition at line 59 of file FeedItem.php.
References $author, $comments, $date, $description, $title, and $url.
FeedItem::getAuthor | ( | ) |
Get the author of this item; already xml-encoded.
Definition at line 183 of file FeedItem.php.
References xmlEncode().
FeedItem::getAuthorUnescaped | ( | ) |
Get the author of this item without any escaping.
Definition at line 192 of file FeedItem.php.
FeedItem::getComments | ( | ) |
Get the comment of this item; already xml-encoded.
Definition at line 201 of file FeedItem.php.
References xmlEncode().
FeedItem::getCommentsUnescaped | ( | ) |
Get the comment of this item without any escaping.
Definition at line 210 of file FeedItem.php.
FeedItem::getDate | ( | ) |
FeedItem::getDescription | ( | ) |
Get the description of this item; already xml-encoded.
Definition at line 146 of file FeedItem.php.
References xmlEncode().
Referenced by AtomFeed\outHeader(), and RSSFeed\outHeader().
FeedItem::getDescriptionUnescaped | ( | ) |
Get the description of this item without any escaping.
Definition at line 155 of file FeedItem.php.
FeedItem::getLanguage | ( | ) |
Get the language of this item.
Definition at line 164 of file FeedItem.php.
References $wgLanguageCode.
Referenced by AtomFeed\outHeader(), and RSSFeed\outHeader().
FeedItem::getTitle | ( | ) |
Get the title of this item; already xml-encoded.
Definition at line 120 of file FeedItem.php.
References xmlEncode().
Referenced by AtomFeed\outHeader(), and RSSFeed\outHeader().
FeedItem::getUniqueID | ( | ) |
Get the unique id of this item; already xml-encoded.
Definition at line 87 of file FeedItem.php.
References getUniqueIdUnescaped(), and xmlEncode().
FeedItem::getUniqueIdUnescaped | ( | ) |
Get the unique id of this item, without any escaping.
Definition at line 98 of file FeedItem.php.
References PROTO_CURRENT, and wfExpandUrl().
Referenced by getUniqueID().
FeedItem::getUrl | ( | ) |
Get the URL of this item; already xml-encoded.
Definition at line 129 of file FeedItem.php.
References xmlEncode().
FeedItem::getUrlUnescaped | ( | ) |
Get the URL of this item without any escaping.
Definition at line 137 of file FeedItem.php.
Referenced by AtomFeed\outHeader(), and RSSFeed\outHeader().
FeedItem::setUniqueId | ( | $uniqueId, | |
$rssIsPermalink = false |
|||
) |
Set the unique id of an item.
string | $uniqueId | Unique id for the item |
bool | $rssIsPermalink | Set to true if the guid (unique id) is a permalink (RSS feeds only) |
Definition at line 110 of file FeedItem.php.
References $rssIsPermalink, and $uniqueId.
|
static |
Quickie hack... strip out wikilinks to more legible form from the comment.
string | $text | Wikitext |
Definition at line 220 of file FeedItem.php.
FeedItem::xmlEncode | ( | $string | ) |
Encode $string so that it can be safely embedded in a XML document.
string | $string | String to encode |
Definition at line 77 of file FeedItem.php.
Referenced by getAuthor(), getComments(), getDescription(), getTitle(), getUniqueID(), getUrl(), AtomFeed\outHeader(), RSSFeed\outHeader(), AtomFeed\outItem(), and RSSFeed\outItem().
FeedItem::$author |
Definition at line 43 of file FeedItem.php.
Referenced by ChannelFeed\__construct(), and __construct().
FeedItem::$comments |
Definition at line 47 of file FeedItem.php.
Referenced by ChannelFeed\__construct(), __construct(), and RSSFeed\outItem().
FeedItem::$date |
Definition at line 41 of file FeedItem.php.
Referenced by ChannelFeed\__construct(), and __construct().
FeedItem::$description |
Definition at line 37 of file FeedItem.php.
Referenced by ChannelFeed\__construct(), and __construct().
FeedItem::$rssIsPermalink = false |
Definition at line 49 of file FeedItem.php.
Referenced by setUniqueId().
Title FeedItem::$title |
Definition at line 35 of file FeedItem.php.
Referenced by ChannelFeed\__construct().
FeedItem::$uniqueId |
Definition at line 45 of file FeedItem.php.
Referenced by setUniqueId().
FeedItem::$url |
Definition at line 39 of file FeedItem.php.
Referenced by ChannelFeed\__construct(), and __construct().