2011-12-13 06:58:30 +00: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 07:02:43 +00:00
|
|
|
|
|
|
|
function digestSend() {
|
|
|
|
send_headlines_digests($this->link);
|
|
|
|
}
|
|
|
|
|
|
|
|
function help() {
|
2011-12-14 11:51:27 +00:00
|
|
|
$topic = basename($_REQUEST["topic"]);
|
2011-12-13 07:02:43 +00:00
|
|
|
|
2011-12-14 11:51:27 +00:00
|
|
|
if (file_exists("help/$topic.php")) {
|
|
|
|
include("help/$topic.php");
|
2011-12-13 07:02:43 +00:00
|
|
|
} else {
|
|
|
|
print "<p>".__("Help topic not found.")."</p>";
|
|
|
|
}
|
2011-12-14 11:51:27 +00:00
|
|
|
/* print "<div align='center'>
|
2011-12-13 07:02:43 +00:00
|
|
|
<button onclick=\"javascript:window.close()\">".
|
2011-12-14 11:51:27 +00:00
|
|
|
__('Close this window')."</button></div>"; */
|
2011-12-13 07:02:43 +00:00
|
|
|
|
|
|
|
}
|
2011-12-13 06:58:30 +00:00
|
|
|
}
|
|
|
|
?>
|