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