summaryrefslogtreecommitdiff
path: root/init.php
blob: bb9e840dc98e28cbd6f9ad8d455a18c86d1c3ecb (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
35
<?php
class Scored_Oldest_First extends Plugin {

	function init($host) {
		$host->add_hook($host::HOOK_HEADLINES_CUSTOM_SORT_MAP, $this);
		$host->add_hook($host::HOOK_HEADLINES_CUSTOM_SORT_OVERRIDE, $this);
	}

	function hook_headlines_custom_sort_map() {
		return [
			"dates_reverse_scored" => "Oldest first (with score)"
		];
	}

	function hook_headlines_custom_sort_override($order) {
		if ($order == "dates_reverse_scored") {
			return [ "score DESC, updated", true ];
		} else {
			return [ "", false ];
		}
	}

	function about() {
		return array(null,
			"Consider article score while sorting by oldest first",
			"fox",
			false,
			"");
	}

	function api_version() {
		return 2;
	}

}