rss-bridge/formats/PlaintextFormat.php
2024-08-23 17:34:06 +02:00

16 lines
342 B
PHP

<?php
class PlaintextFormat extends FormatAbstract
{
const MIME_TYPE = 'text/plain';
public function render(): string
{
$feed = $this->getFeed();
foreach ($this->getItems() as $item) {
$feed['items'][] = $item->toArray();
}
$text = print_r($feed, true);
return $text;
}
}