summaryrefslogtreecommitdiff
path: root/plugins/shorten_expanded/init.php
blob: 26208734ede016af01222950f72b0acaaa6dfeb7 (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
<?php
class Shorten_Expanded extends Plugin {

	function about() {
		return array(null,
			"Shorten overly long articles in CDM/expanded",
			"fox");
	}

	function init($host) {

	}

	function get_css() {
		return file_get_contents(__DIR__ . "/init.css");
	}

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

	function api_version() {
		return 2;
	}

}