1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-30 12:30:52 +02:00
ttrss/plugins/close_button/init.php

38 lines
707 B
PHP
Raw Normal View History

<?php
class Close_Button extends Plugin {
private $host;
function init($host) {
$this->host = $host;
$host->add_hook($host::HOOK_ARTICLE_BUTTON, $this);
}
function about() {
return array(1.0,
"Adds a button to close article panel",
"fox");
}
2018-12-09 14:35:00 +01:00
function get_css() {
return "i.icon-close-article { color : red; }";
}
/**
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
function hook_article_button($line) {
if (!get_pref("COMBINED_DISPLAY_MODE")) {
2018-12-09 14:35:00 +01:00
$rv = "<i class='material-icons icon-close-article'
style='cursor : pointer' onclick='Article.close()'
title='".__('Close article')."'>close</i>";
}
return $rv;
}
2013-04-19 15:31:56 +02:00
function api_version() {
return 2;
}
}