193b8c351SAndreas Gohr<?php 293b8c351SAndreas Gohr 393b8c351SAndreas Gohrnamespace dokuwiki\Menu; 493b8c351SAndreas Gohr 5368ce258SAndreas Gohr/** 6368ce258SAndreas Gohr * Class PageMenu 7368ce258SAndreas Gohr * 8368ce258SAndreas Gohr * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template 9368ce258SAndreas Gohr */ 10*33b91513SAndreas Gohrclass PageMenu extends AbstractMenu 11*33b91513SAndreas Gohr{ 1293b8c351SAndreas Gohr protected $view = 'page'; 1393b8c351SAndreas Gohr 14*33b91513SAndreas Gohr protected $types = ['Edit', 'Revert', 'Revisions', 'Backlink', 'Subscribe', 'Top']; 1593b8c351SAndreas Gohr} 16