Files
dokuwiki-plugins/lib/plugins/odt/MenuItemODT.php
Trevor Batley bce7dd054a add contents
2025-10-09 15:04:29 +11:00

41 lines
851 B
PHP

<?php
namespace dokuwiki\plugin\odt;
use dokuwiki\Menu\Item\AbstractItem;
/**
* Class MenuItemODT
*
* Implements the ODT export button for DokuWiki's menu system
*
* @package dokuwiki\plugin\odt
*/
class MenuItemODT extends AbstractItem {
/** @var string do action for this plugin */
protected $type = 'export_odt';
/** @var string icon file */
protected $svg = DOKU_INC . 'lib/plugins/odt/menu-odt.svg';
/**
* MenuItem constructor.
*/
public function __construct() {
parent::__construct();
global $REV;
if($REV) $this->params['rev'] = $REV;
}
/**
* Get label from plugin language file
*
* @return string
*/
public function getLabel() {
$hlp = plugin_load('action', 'odt_export');
return $hlp->getLang('export_odt_button');
}
}