34 lines
771 B
PHP
34 lines
771 B
PHP
<?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());
|
|
}
|
|
|
|
} |