mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-29 15:41:05 -05:00
* revert Fix code indentation Fix code Upgrade code to php 8.1 * fix remarques * code review * code review * code review * Apply suggestions from code review * code review * Fixes * Many remainging updates of array syntax * Lost case 'reading-list' * Uneeded PHPDoc --------- Co-authored-by: Luc Sanchez <l.sanchez-prestataire@alptis.fr> Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
18 lines
363 B
PHTML
18 lines
363 B
PHTML
<?php
|
|
declare(strict_types=1);
|
|
/** @var FreshRSS_ViewJavascript $this */
|
|
|
|
$result = [
|
|
'feeds' => [],
|
|
'tags' => [],
|
|
];
|
|
foreach ($this->categories as $cat) {
|
|
foreach ($cat->feeds() as $feed) {
|
|
$result['feeds'][$feed->id()] = $feed->nbNotRead();
|
|
}
|
|
}
|
|
foreach ($this->tags as $tag) {
|
|
$result['tags'][$tag->id()] = $tag->nbUnread();
|
|
}
|
|
echo json_encode($result);
|