* @package Mammut\Documents
*/
class RSSFeed extends \Mammut\StdObject {
const _VERSION_ = '0.1.0.1';
const RSS_VERSION = '2.0';
const MIME_TYPE = 'application/rss+xml';
/**
* generates a link tag suiteable for adding in the header region of a HTML document
*
* @param string $title
* feed title
* @param string $url
* feed url
* @return string
*/
public static function genLink($title, $url) {
return '';
}
/**
* returns the content as a string
*/
public function getContent() {
$st = '
Titel des Feeds
URL der Webpr�senz
Kurze Beschreibung des FeedsSprache des Feeds (z. B. "de-de")Autor des FeedsErstellungsdatum("Tue, 8 Jul 2008 2:43:19")URL einer einzubindenden GrafikBildtitel
URL, mit der das Bild verkn�pft ist
Titel des EintragsKurze Zusammenfassung des Eintrags
Link zum vollst�ndigen Eintrag
Autor des Artikels, E-Mail-AdresseEindeutige Identifikation des EintragesDatum des Items';
return $st;
}
}