You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
336 B

  1. <?php
  2. namespace dokuwiki\Menu\Item;
  3. /**
  4. * Class Backlink
  5. *
  6. * Shows the backlinks for the current page
  7. */
  8. class Backlink extends AbstractItem {
  9. /** @inheritdoc */
  10. public function __construct() {
  11. parent::__construct();
  12. $this->svg = DOKU_INC_COMPAT . 'lib/images/menu/08-backlink_link-variant.svg';
  13. }
  14. }