1<?php
2
3namespace dokuwiki\Menu;
4
5// must be run from within DokuWiki
6if (!defined('DOKU_INC')) die();
7
8/**
9 * Class KiwikiPageMenu
10 *
11 * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template
12 */
13class KiwikiPageMenu extends AbstractMenu {
14
15    protected $view = 'page';
16
17    protected $types = array(
18        'Edit',
19        'Revert',
20        'Revisions',
21        'Backlink',
22        'Subscribe',
23    );
24
25}