1*93b8c351SAndreas Gohr<?php 2*93b8c351SAndreas Gohr 3*93b8c351SAndreas Gohrnamespace dokuwiki\Menu; 4*93b8c351SAndreas Gohr 5*93b8c351SAndreas Gohrclass DetailMenu extends AbstractMenu { 6*93b8c351SAndreas Gohr 7*93b8c351SAndreas Gohr protected $view = 'detail'; 8*93b8c351SAndreas Gohr 9*93b8c351SAndreas Gohr protected $types = array( 10*93b8c351SAndreas Gohr 'MediaManager', 11*93b8c351SAndreas Gohr 'ImgBackto', 12*93b8c351SAndreas Gohr 'Top', 13*93b8c351SAndreas Gohr ); 14*93b8c351SAndreas Gohr 15*93b8c351SAndreas Gohr} 16