mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-24 21:27:56 -05:00
9 lines
176 B
PHTML
9 lines
176 B
PHTML
<?php
|
|
$result = array();
|
|
foreach ($this->categories as $cat) {
|
|
foreach ($cat->feeds() as $feed) {
|
|
$result[$feed->id()] = $feed->nbNotRead();
|
|
}
|
|
}
|
|
echo json_encode($result);
|