193b8c351SAndreas Gohr<?php 293b8c351SAndreas Gohr 393b8c351SAndreas Gohrnamespace dokuwiki\Menu; 493b8c351SAndreas Gohr 5*368ce258SAndreas Gohr/** 6*368ce258SAndreas Gohr * Class DetailMenu 7*368ce258SAndreas Gohr * 8*368ce258SAndreas Gohr * This menu offers options on an image detail view. It usually displayed similar to 9*368ce258SAndreas Gohr * the PageMenu. 10*368ce258SAndreas Gohr */ 1193b8c351SAndreas Gohrclass DetailMenu extends AbstractMenu { 1293b8c351SAndreas Gohr 1393b8c351SAndreas Gohr protected $view = 'detail'; 1493b8c351SAndreas Gohr 1593b8c351SAndreas Gohr protected $types = array( 1693b8c351SAndreas Gohr 'MediaManager', 1793b8c351SAndreas Gohr 'ImgBackto', 1893b8c351SAndreas Gohr 'Top', 1993b8c351SAndreas Gohr ); 2093b8c351SAndreas Gohr 2193b8c351SAndreas Gohr} 22