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/read.phtml
2016-07-24 11:59:17 +02:00

17 lines
512 B
PHTML
Executable file

<?php
header('Content-Type: application/json; charset=UTF-8');
if (Minz_Request::param('is_read', true)) {
Minz_Request::_param('is_read', 0);
} else {
Minz_Request::_param('is_read', 1);
}
$url = Minz_Url::display(array(
'c' => Minz_Request::controllerName(),
'a' => Minz_Request::actionName(),
'params' => Minz_Request::params(),
));
FreshRSS::loadStylesAndScripts();
echo json_encode(array('url' => str_ireplace('&amp;', '&', $url), 'icon' => _i(Minz_Request::param('is_read') ? 'unread' : 'read')));