ttrss/classes/backend.php

36 lines
761 B
PHP
Raw Normal View History

2011-12-13 07:58:30 +01:00
<?php
class Backend extends Handler {
function loading() {
header("Content-type: text/html");
print __("Loading, please wait...") . " " .
"<img src='images/indicator_tiny.gif'>";
}
2011-12-13 08:02:43 +01:00
function digestTest() {
header("Content-type: text/html");
2012-12-24 12:52:59 +01:00
require_once "digest.php";
$rv = prepare_headlines_digest($this->link, $_SESSION['uid'], 1, 1000);
$rv[3] = "<pre>" . $rv[3] . "</pre>";
print_r($rv);
2011-12-13 08:02:43 +01:00
}
function help() {
$topic = basename($_REQUEST["topic"]);
2011-12-13 08:02:43 +01:00
if (file_exists("help/$topic.php")) {
include("help/$topic.php");
2011-12-13 08:02:43 +01:00
} else {
print "<p>".__("Help topic not found.")."</p>";
}
/* print "<div align='center'>
2011-12-13 08:02:43 +01:00
<button onclick=\"javascript:window.close()\">".
__('Close this window')."</button></div>"; */
2011-12-13 08:02:43 +01:00
}
2011-12-13 07:58:30 +01:00
}
?>