2013-08-11 15:30:41 +04:00
|
|
|
<?php
|
2022-07-01 16:10:30 +03:00
|
|
|
|
|
|
|
class PlaintextFormat extends FormatAbstract
|
|
|
|
{
|
|
|
|
const MIME_TYPE = 'text/plain';
|
2019-10-31 21:00:12 +03:00
|
|
|
|
2024-08-23 18:34:06 +03:00
|
|
|
public function render(): string
|
2022-07-01 16:10:30 +03:00
|
|
|
{
|
2024-01-09 22:18:33 +03:00
|
|
|
$feed = $this->getFeed();
|
2023-09-25 23:32:15 +03:00
|
|
|
foreach ($this->getItems() as $item) {
|
2024-01-09 22:18:33 +03:00
|
|
|
$feed['items'][] = $item->toArray();
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
2024-01-09 22:18:33 +03:00
|
|
|
$text = print_r($feed, true);
|
2023-09-25 23:32:15 +03:00
|
|
|
return $text;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
2016-09-10 21:41:11 +03:00
|
|
|
}
|