-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathMenuItemODTPDF.php
45 lines (37 loc) · 974 Bytes
/
MenuItemODTPDF.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?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 MenuItemODTPDF extends AbstractItem {
/** @var string do action for this plugin */
protected $type = 'export_odt_pdf';
/** @var string icon file */
protected $svg = DOKU_INC . 'lib/plugins/odt/menu-odt-pdf.svg';
/**
* MenuItem constructor.
*/
public function __construct() {
parent::__construct();
global $REV, $DATE_AT;
if($DATE_AT) {
$this->params['at'] = $DATE_AT;
} elseif($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_pdf_button');
}
}