summaryrefslogtreecommitdiff
path: root/platform/www/inc/Menu/DetailMenu.php
blob: 27c0c6fce3e6fd249986a421d3eb88f7ff947c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

namespace dokuwiki\Menu;

/**
 * Class DetailMenu
 *
 * This menu offers options on an image detail view. It usually displayed similar to
 * the PageMenu.
 */
class DetailMenu extends AbstractMenu {

    protected $view = 'detail';

    protected $types = array(
        'MediaManager',
        'ImgBackto',
        'Top',
    );

}