1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:45:55 +00:00

add experimental plugin to shorten articles which are too damn long in expanded cdm

This commit is contained in:
Andrew Dolgov
2013-07-31 18:58:56 +04:00
parent a447f4e40a
commit 2fdbff069f
3 changed files with 83 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php
class Shorten_Expanded extends Plugin {
private $host;
function about() {
return array(1.0,
"Shorten overly long articles in CDM/expanded",
"fox");
}
function init($host) {
$this->host = $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;
}
}
?>