nbUnreadsPerFeed.phtml 176 B

12345678
  1. <?php
  2. $result = array();
  3. foreach ($this->categories as $cat) {
  4. foreach ($cat->feeds() as $feed) {
  5. $result[$feed->id()] = $feed->nbNotRead();
  6. }
  7. }
  8. echo json_encode($result);