[ 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 = array(
  15          'Edit',
  16          'Revert',
  17          'Revisions',
  18          'Backlink',
  19          'Subscribe',
  20          'Top',
  21      );
  22  
  23  }