read.phtml 214 B

123456789
  1. <?php
  2. declare(strict_types=1);
  3. /** @var FreshRSS_View $this */
  4. header('Content-Type: application/json; charset=UTF-8');
  5. FreshRSS::loadStylesAndScripts();
  6. echo json_encode([
  7. 'tags' => $this->tagsForEntries,
  8. ]);