1<?php
2
3namespace dokuwiki\plugin\approve\meta;
4
5use dokuwiki\Menu\Item\AbstractItem;
6
7class ViewModeEdit extends AbstractItem {
8
9    /** @inheritdoc */
10    public function __construct() {
11        parent::__construct();
12        $helper = plugin_load('helper', 'approve');
13
14        $this->svg = DOKU_INC . 'lib/plugins/approve/circle-edit-outline.svg';
15        $this->label = $helper->getLang('btn_edit_mode');
16        $this->accesskey = 'e'; // it replaces the edit button, so the same access key.
17    }
18}