xref: /dokuwiki/inc/Menu/DetailMenu.php (revision 33b91513e25639a6c7eb35668484d29098f7c9b4)
193b8c351SAndreas Gohr<?php
293b8c351SAndreas Gohr
393b8c351SAndreas Gohrnamespace dokuwiki\Menu;
493b8c351SAndreas Gohr
5368ce258SAndreas Gohr/**
6368ce258SAndreas Gohr * Class DetailMenu
7368ce258SAndreas Gohr *
8368ce258SAndreas Gohr * This menu offers options on an image detail view. It usually displayed similar to
9368ce258SAndreas Gohr * the PageMenu.
10368ce258SAndreas Gohr */
11*33b91513SAndreas Gohrclass DetailMenu extends AbstractMenu
12*33b91513SAndreas Gohr{
1393b8c351SAndreas Gohr
1493b8c351SAndreas Gohr    protected $view = 'detail';
1593b8c351SAndreas Gohr
16*33b91513SAndreas Gohr    protected $types = ['MediaManager', 'ImgBackto', 'Top'];
1793b8c351SAndreas Gohr
1893b8c351SAndreas Gohr}
19