summaryrefslogtreecommitdiff
path: root/modules/help.php
blob: 3f6968db7ef15906768f72c2726f59bb916b1144 (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
<?php
	function module_help($link) {

		if (!$_GET["noheaders"]) {
			print "<html><head>
				<title>Tiny Tiny RSS : Help</title>
				<link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
				<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
				</head><body>";
		}

		$tid = sprintf("%d", $_GET["tid"]);

		if (file_exists("help/$tid.php")) {
			include("help/$tid.php");
		} else {
			print "<p>".__("Help topic not found.")."</p>";
		}
		print "<div align='center'>
			<input type='submit' class='button'			
			onclick=\"javascript:window.close()\" 
			value=\"".__('Close this window')."\"></div>";

		if (!$_GET["noheaders"]) { 
			print "</body></html>";
		}
	}
?>