1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php namespace dokuwiki\Menu; /** * Class SiteMenu * * Actions that are not bound to an individual page but provide toolsfor the whole wiki. */ class SiteMenu extends AbstractMenu { protected $view = 'site'; protected $types = array( 'Recent', 'Media', 'Index' ); }