summaryrefslogtreecommitdiff
path: root/classes/backend.php
blob: 19938344d78481f1e222aba7e6cfbc646e1d4ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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, 100, true);
	}

	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>"; */

	}
}
?>