ttrss/classes/backend.php

31 lines
647 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 digestSend() {
define('PREFS_NO_CACHE', true);
send_headlines_digests($this->link, 100, true);
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
}
?>