summaryrefslogtreecommitdiff
path: root/init.php
blob: 4fd3a46949d094ca0cda6a9d0738238bd6c18822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
class HL_Legacy extends Plugin {
	function about() {
		return array(1.0,
			"Revert back to legacy headline click behavior",
			"fox");
	}

	function init($host) {

	}

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

	function api_version() {
		return 2;
	}
}