mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-18 02:07:53 -05:00
* Add PHPStan #fix https://github.com/FreshRSS/FreshRSS/issues/4016 https://phpstan.org/ ```sh composer run-script phpstan ``` * More fixes * Fix global variables * Add .phtml * Fix merge https://github.com/FreshRSS/FreshRSS/pull/4090 * Fix more warnings * Fix view errors and enable in CI * ReturnTypeWillChange * Dynamic view type * Fix Minz static/self bug
15 lines
451 B
PHTML
15 lines
451 B
PHTML
<?php /** @var FreshRSS_View $this */ ?>
|
|
<?php
|
|
$feeds = array();
|
|
foreach ($this->feeds as $feed) {
|
|
$feeds[] = array(
|
|
'url' => Minz_Url::display(array('c' => 'feed', 'a' => 'actualize', 'params' => array('id' => $feed->id(), 'ajax' => '1')), 'php'),
|
|
'title' => $feed->name(),
|
|
);
|
|
}
|
|
echo json_encode(array(
|
|
'feeds' => $feeds,
|
|
'feedback_no_refresh' => _t('feedback.sub.feed.no_refresh'),
|
|
'feedback_actualize' => _t('feedback.sub.actualize'),
|
|
));
|