Files
mr-legend_wiki/lib/tpl/bootstrap3/compat/inc/Menu/Item/Backlink.php
T
2024-07-08 03:32:47 +09:00

19 lines
336 B
PHP

<?php
namespace dokuwiki\Menu\Item;
/**
* Class Backlink
*
* Shows the backlinks for the current page
*/
class Backlink extends AbstractItem {
/** @inheritdoc */
public function __construct() {
parent::__construct();
$this->svg = DOKU_INC_COMPAT . 'lib/images/menu/08-backlink_link-variant.svg';
}
}