[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/Menu/ -> PageMenu.php (source)

   1  <?php
   2  
   3  namespace dokuwiki\Menu;
   4  
   5  /**
   6   * Class PageMenu
   7   *
   8   * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template
   9   */
  10  class PageMenu extends AbstractMenu
  11  {
  12      protected $view = 'page';
  13  
  14      protected $types = ['Edit', 'Revert', 'Revisions', 'Backlink', 'Subscribe', 'Top'];
  15  }