1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freshrss_ynh.git synced 2024-09-03 18:36:33 +02:00
freshrss_ynh/sources/app/views/entry/bookmark.phtml

18 lines
536 B
PHTML
Raw Normal View History

2014-07-23 15:52:50 +02:00
<?php
header('Content-Type: application/json; charset=UTF-8');
2015-02-08 18:55:48 +01:00
if (Minz_Request::param('is_favorite', true)) {
Minz_Request::_param('is_favorite', 0);
2014-07-23 15:52:50 +02:00
} else {
2015-02-08 18:55:48 +01:00
Minz_Request::_param('is_favorite', 1);
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
$url = Minz_Url::display(array(
'c' => Minz_Request::controllerName(),
'a' => Minz_Request::actionName(),
'params' => Minz_Request::params(),
2014-07-23 15:52:50 +02:00
));
2016-07-24 11:59:17 +02:00
FreshRSS::loadStylesAndScripts();
2015-02-08 18:55:48 +01:00
echo json_encode(array('url' => str_ireplace('&amp;', '&', $url), 'icon' => _i(Minz_Request::param('is_favorite') ? 'non-starred' : 'starred')));