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 protected $view = 'detail'; 1493b8c351SAndreas Gohr 15*33b91513SAndreas Gohr protected $types = ['MediaManager', 'ImgBackto', 'Top']; 1693b8c351SAndreas Gohr} 17