[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/Menu/Item/ -> Backlink.php (source)

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