1<?php 2namespace dokuwiki\plugin\tagadd; 3 4use dokuwiki\Menu\Item\AbstractItem; 5 6/** 7 * 8 * @author peterfromearth 9 * 10 * @package dokuwiki\plugin\tagadd 11 * 12 */ 13class MenuItem extends AbstractItem { 14 protected $type = 'plugin_tagadd__addtags'; 15 protected $svg = __DIR__ . '/images/tagadd_new.svg'; 16 protected $method = 'post'; 17 18 public function getLabel() { 19 return plugin_load('action', 'tagadd')->getLang('btn_addTagButton'); 20 } 21 22} 23