summaryrefslogtreecommitdiff
path: root/init.php
blob: 57d4c9927359ff037db89fb7dcf6bdf0837f2719 (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
<?php
class No_URL_Hashes extends Plugin {
	private $host;

	function about() {
		return array(null,
			"Disable URL hash usage (e.g. #f=10, etc)",
			"fox");
	}

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

	}

	function get_js() {
		return file_get_contents(__DIR__ . "/init.js");
	}

	function api_version() {
		return 2;
	}

}