xref: /plugin/catmenu/action/buttons.php (revision 6983cdfd4483215ff5a1e573925c9c612964e790)
1<?php
2
3class action_plugin_catmenu_buttons extends DokuWiki_Action_Plugin
4{
5    public function register(Doku_Event_Handler $controller)
6    {
7        $controller->register_hook('TOOLBAR_DEFINE', 'AFTER', $this, 'handleToolbar');
8    }
9
10    public function handleToolbar(Doku_Event $event, $param)
11    {
12        if (!(bool)$this->getConf('show_in_editor_menu')) return;
13
14        $event->data[] = [
15            'type' => 'insert',
16            'title' => 'CatMenu',
17            'icon' => '../../plugins/catmenu/images/default.png',
18            'insert' => '{{catmenu>.}}'
19        ];
20    }
21}
22