dockerwiki/content/inc/Menu/DetailMenu.php

22 lines
340 B
PHP
Raw Normal View History

2021-10-26 13:02:53 +02:00
<?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',
);
}