summaryrefslogtreecommitdiff
path: root/plugins/close_button/init.php
blob: bf41833200644ac6c6b8cab9ae0f2f53d8edf863 (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
27
28
29
30
<?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")) {
			$rv = "<img src=\"".theme_image($this->link, 'plugins/close_button/button.png')."\"
				class='tagsPic' style=\"cursor : pointer\"
				onclick=\"closeArticlePanel()\"
				title='".__('Close article')."'>";
		}

		return $rv;
	}
}
?>