summaryrefslogtreecommitdiff
path: root/plugins/googlereaderkeys/init.php
blob: 769581908e598819ec8728ca9eeea968e4a3c4b7 (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
31
32
33
34
<?php
class GoogleReaderKeys extends Plugin {

	private $link;
	private $host;

	function about() {
		return array(1.0,
			"Keyboard hotkeys like Google Reader",
			"markwaters");
	}

	function init($host) {
		$this->link = $host->get_link();
		$this->host = $host;

		$host->add_hook($host::HOOK_HOTKEY_MAP, $this);
	}

	function hook_hotkey_map($hotkeys) {

		$hotkeys["j"] = "next_article_noscroll";
		$hotkeys["N"] = "next_feed";
		$hotkeys["k"] = "prev_article_noscroll";
		$hotkeys["P"] = "prev_feed";
		$hotkeys["v"] = "open_in_new_window";
		$hotkeys["(32)|space"] = "next_article";
		$hotkeys["r"] = "feed_refresh";

		return $hotkeys;

	}
}
?>