1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-30 12:30:52 +02:00
ttrss/classes/backend.php
Andrew Dolgov 8437c066e1 implement digestTest back
misc digest updates and improvements
2012-01-31 16:27:51 +04:00

41 lines
835 B
PHP

<?php
class Backend extends Handler {
function loading() {
header("Content-type: text/html");
print __("Loading, please wait...") . " " .
"<img src='images/indicator_tiny.gif'>";
}
function digestSend() {
define('PREFS_NO_CACHE', true);
send_headlines_digests($this->link);
}
function digestTest() {
header("Content-type: text/html");
$rv = prepare_headlines_digest($this->link, $_SESSION['uid'], 1, 1000);
$rv[3] = "<pre>" . $rv[3] . "</pre>";
print_r($rv);
}
function help() {
$topic = basename($_REQUEST["topic"]);
if (file_exists("help/$topic.php")) {
include("help/$topic.php");
} else {
print "<p>".__("Help topic not found.")."</p>";
}
/* print "<div align='center'>
<button onclick=\"javascript:window.close()\">".
__('Close this window')."</button></div>"; */
}
}
?>