Adding dw2pdf version 2023-11-25 (48253f1).
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
d4820b660a
commit
8e32b01eb0
999 changed files with 144285 additions and 0 deletions
47
plugins/55/dw2pdf/MenuItem.php
Normal file
47
plugins/55/dw2pdf/MenuItem.php
Normal file
|
@ -0,0 +1,47 @@
|
|||
<?php
|
||||
|
||||
namespace dokuwiki\plugin\dw2pdf;
|
||||
|
||||
use dokuwiki\Menu\Item\AbstractItem;
|
||||
|
||||
/**
|
||||
* Class MenuItem
|
||||
*
|
||||
* Implements the PDF export button for DokuWiki's menu system
|
||||
*
|
||||
* @package dokuwiki\plugin\dw2pdf
|
||||
*/
|
||||
class MenuItem extends AbstractItem
|
||||
{
|
||||
/** @var string do action for this plugin */
|
||||
protected $type = 'export_pdf';
|
||||
|
||||
/** @var string icon file */
|
||||
protected $svg = __DIR__ . '/file-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', 'dw2pdf');
|
||||
return $hlp->getLang('export_pdf_button');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue