mirror of
https://github.com/YunoHost-Apps/freshrss_ynh.git
synced 2024-09-03 18:36:33 +02:00
16 lines
533 B
PHTML
Executable file
16 lines
533 B
PHTML
Executable file
<?php
|
|
header('Content-Type: application/json; charset=UTF-8');
|
|
|
|
if (Minz_Request::param ('is_favorite', true)) {
|
|
Minz_Request::_param ('is_favorite', 0);
|
|
} else {
|
|
Minz_Request::_param ('is_favorite', 1);
|
|
}
|
|
|
|
$url = Minz_Url::display (array (
|
|
'c' => Minz_Request::controllerName (),
|
|
'a' => Minz_Request::actionName (),
|
|
'params' => Minz_Request::params (),
|
|
));
|
|
|
|
echo json_encode (array ('url' => str_ireplace ('&', '&', $url), 'icon' => FreshRSS_Themes::icon(Minz_Request::param ('is_favorite') ? 'non-starred' : 'starred')));
|