]> git.wh0rd.org - tt-rss.git/blob - plugins/shorten_expanded/init.php
minor css fixes (mostly for zoom mode)
[tt-rss.git] / plugins / shorten_expanded / init.php
1 <?php
2 class Shorten_Expanded extends Plugin {
3 private $host;
4
5 function about() {
6 return array(1.0,
7 "Shorten overly long articles in CDM/expanded",
8 "fox");
9 }
10
11 function init($host) {
12 $this->host = $host;
13
14 }
15
16 function get_css() {
17 return file_get_contents(__DIR__ . "/init.css");
18 }
19
20 function get_js() {
21 return file_get_contents(__DIR__ . "/init.js");
22 }
23
24 function api_version() {
25 return 2;
26 }
27
28 }