gnu-social/lib/atomnoticefeed.php

34 lines
771 B
PHP
Raw Normal View History

2010-02-10 22:24:16 +00:00
<?php
class AtomNoticeFeed extends Atom10Feed
{
function __construct($indent = true) {
parent::__construct($indent);
// Feeds containing notice info use the Atom Threading Extensions
$this->addNamespace(
'xmlns:thr',
'http://purl.org/syndication/thread/1.0'
);
}
function addEntryFromNotices($notices)
{
if (is_array($notices)) {
foreach ($notices as $notice) {
$this->addEntryFromNotice($notice);
}
} else {
while ($notices->fetch()) {
$this->addEntryFromNotice($notice);
}
}
}
function addEntryFromNotice($notice)
{
$this->addEntryRaw($notice->asAtomEntry());
}
}