2013-02-20 13:04:15 +01:00
|
|
|
<?php
|
|
|
|
class Close_Button extends Plugin {
|
|
|
|
private $link;
|
|
|
|
private $host;
|
|
|
|
|
|
|
|
function init($host) {
|
|
|
|
$this->link = $host->get_link();
|
|
|
|
$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");
|
|
|
|
}
|
|
|
|
|
|
|
|
function hook_article_button($line) {
|
|
|
|
if (!get_pref($this->link, "COMBINED_DISPLAY_MODE")) {
|
2013-03-20 22:59:08 +01:00
|
|
|
$rv = "<img src=\"plugins/close_button/button.png\"
|
2013-02-20 13:04:15 +01:00
|
|
|
class='tagsPic' style=\"cursor : pointer\"
|
|
|
|
onclick=\"closeArticlePanel()\"
|
|
|
|
title='".__('Close article')."'>";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|