mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-06-02 04:34:55 -04:00
* Take advantage of PHP 5.4+ short echo https://php.net/migration54.new-features thanks to https://github.com/FreshRSS/FreshRSS/pull/2495 Use `<?= ?>` instead of `<?php echo; ?>` 10kB of code saved :-) Done with regular expression: ``` <\?php echo (.+?);? *\?> <?= \1 ?> ``` * Try Travis fix https://github.com/squizlabs/PHP_CodeSniffer/issues/2045#issuecomment-395238272
40 lines
1.3 KiB
PHTML
Executable File
40 lines
1.3 KiB
PHTML
Executable File
<?= '<?xml version="1.0" encoding="UTF-8" ?>'; ?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
<channel>
|
|
<title><?= $this->rss_title ?></title>
|
|
<link><?= Minz_Url::display(null, 'html', true) ?></link>
|
|
<description><?= _t('index.feed.rss_of', $this->rss_title) ?></description>
|
|
<pubDate><?= date('D, d M Y H:i:s O') ?></pubDate>
|
|
<lastBuildDate><?= gmdate('D, d M Y H:i:s') ?> GMT</lastBuildDate>
|
|
<atom:link href="<?= Minz_Url::display($this->url, 'html', true) ?>" rel="self" type="application/rss+xml" />
|
|
<?php
|
|
foreach ($this->entries as $item) {
|
|
?>
|
|
<item>
|
|
<title><?= $item->title() ?></title>
|
|
<link><?= $item->link() ?></link>
|
|
<?php
|
|
$authors = $item->authors();
|
|
if (is_array($authors)) {
|
|
foreach ($authors as $author) {
|
|
echo "\t\t\t" , '<dc:creator>', $author, '</dc:creator>', "\n";
|
|
}
|
|
}
|
|
$categories = $item->tags();
|
|
if (is_array($categories)) {
|
|
foreach ($categories as $category) {
|
|
echo "\t\t\t" , '<category>', $category, '</category>', "\n";
|
|
}
|
|
}
|
|
?>
|
|
<description><![CDATA[<?php
|
|
echo $item->content();
|
|
?>]]></description>
|
|
<pubDate><?= date('D, d M Y H:i:s O', $item->date(true)) ?></pubDate>
|
|
<guid isPermaLink="false"><?= $item->id() ?></guid>
|
|
</item>
|
|
<?php } ?>
|
|
|
|
</channel>
|
|
</rss>
|