1<?php
2
3namespace dokuwiki\Menu\Item;
4
5/**
6 * Class Edit Icon
7 *
8 */
9
10class EditIcon extends AbstractItem {
11
12    /** @inheritdoc */
13    public function __construct() {
14        parent::__construct();
15        $this->type = 'edit';
16        $this->svg = KIWIKI_IMAGES_PATH . 'edit.svg';
17        $this->params = array('do' => 'edit');
18        $this->context = self::CTX_ALL;
19    }
20
21
22}
23