1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 04:05:55 +00:00

move help to backend class

This commit is contained in:
Andrew Dolgov
2011-12-13 11:02:43 +04:00
parent 611efae712
commit 4f09f594c2
3 changed files with 19 additions and 16 deletions

View File

@@ -6,5 +6,23 @@ class Backend extends Handler {
print __("Loading, please wait...") . " " .
"<img src='images/indicator_tiny.gif'>";
}
function digestSend() {
send_headlines_digests($this->link);
}
function help() {
$tid = (int) $_REQUEST["tid"];
if (file_exists("help/$tid.php")) {
include("help/$tid.php");
} else {
print "<p>".__("Help topic not found.")."</p>";
}
print "<div align='center'>
<button onclick=\"javascript:window.close()\">".
__('Close this window')."</button></div>";
}
}
?>