1<?php
2
3namespace dokuwiki\template\bootstrap3\Menu;
4
5/**
6 * Class PageIconsMenu
7 *
8 * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template
9 */
10class PageIconsMenu extends \dokuwiki\Menu\AbstractMenu
11{
12    protected $view = 'pageicons';
13
14    protected $types = array(
15        'ShareOn',
16        'Feed',
17        'SendMail',
18        'PrintPage',
19        'Permalink',
20        'Help',
21    );
22}
23