xref: /template/kiwiki/classes/kiwiki_go.php (revision d1a1df22a6862df7409f2709328b9b2dc62e2b53)
1<?php
2
3namespace dokuwiki\Menu;
4
5/**
6 * Class KiwikiGo
7 *
8 * Go to top button
9 */
10class KiwikiGo extends AbstractMenu {
11
12    public $types = array(
13        'Top',
14        'Bottom'
15    );
16
17}
18