PHPIndex

This page lists files in the current directory. You can view content, get download/execute commands for Wget, Curl, or PowerShell, or filter the list using wildcards (e.g., `*.sh`).

bookmark.phtml
wget 'https://lists2.roe3.org/FreshRSS/app/views/entry/bookmark.phtml'
View Content
<?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('&amp;', '&', Minz_Url::display($url)),
		'icon' => _i($url['params']['is_favorite'] === '1' ? 'non-starred' : 'starred')
	));
read.phtml
wget 'https://lists2.roe3.org/FreshRSS/app/views/entry/read.phtml'
View Content
<?php
declare(strict_types=1);
/** @var FreshRSS_View $this */
header('Content-Type: application/json; charset=UTF-8');

FreshRSS::loadStylesAndScripts();
echo json_encode([
		'tags' => $this->tagsForEntries,
	]);