summaryrefslogtreecommitdiff
path: root/platform/www/inc/Menu/Item/Index.php
blob: 41326738b5ed0909070dca95338d1726873b825d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php

namespace dokuwiki\Menu\Item;

/**
 * Class Index
 *
 * Shows the sitemap
 */
class Index extends AbstractItem {

    /** @inheritdoc */
    public function __construct() {
        global $conf;
        global $ID;
        parent::__construct();

        $this->accesskey = 'x';
        $this->svg = DOKU_INC . 'lib/images/menu/file-tree.svg';

        // allow searchbots to get to the sitemap from the homepage (when dokuwiki isn't providing a sitemap.xml)
        if($conf['start'] == $ID && !$conf['sitemap']) {
            $this->nofollow = false;
        }
    }

}