summaryrefslogtreecommitdiff
path: root/plugins/toggle_sidebar/init.php
blob: 312c7f11c3b924ec0842139139d0b86057a97b11 (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
31
32
33
34
<?php
class Toggle_Sidebar extends Plugin {

	function about() {
		return array(null,
			"Adds a main toolbar button to toggle sidebar",
			"fox");
	}

	function init($host) {
		$host->add_hook($host::HOOK_MAIN_TOOLBAR_BUTTON, $this);
	}

	function get_js() {
		return file_get_contents(__DIR__ . "/init.js");
	}

	function hook_main_toolbar_button() {
		?>

		<button dojoType="dijit.form.Button" onclick="Plugins.Toggle_Sidebar.toggle(this)">
			<i class="material-icons toggle-sidebar-label"
               title="<?= __('Toggle sidebar') ?>">chevron_left</i>
		</button>

		<?php
	}

	function api_version() {
		return 2;
	}

}
?>