| 12345678910111213141516171819 |
- <?php
- declare(strict_types=1);
- /** @var FreshRSS_View $this */
- header('Content-Type: application/json; charset=UTF-8');
- $url = array(
- 'c' => Minz_Request::controllerName(),
- 'a' => Minz_Request::actionName(),
- 'params' => $_GET,
- );
- $url['params']['is_favorite'] = (Minz_Request::paramTernary('is_favorite') ?? true) ? '0' : '1';
- FreshRSS::loadStylesAndScripts();
- echo json_encode(array(
- 'url' => str_ireplace('&', '&', Minz_Url::display($url)),
- 'icon' => _i($url['params']['is_favorite'] === '1' ? 'non-starred' : 'starred')
- ));
|