xref: /dokuwiki/inc/Menu/Item/Index.php (revision e44b94a4bd0679ff22e14add34b60590fe7077d3)
193b8c351SAndreas Gohr<?php
293b8c351SAndreas Gohr
393b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item;
493b8c351SAndreas Gohr
5368ce258SAndreas Gohr/**
6368ce258SAndreas Gohr * Class Index
7368ce258SAndreas Gohr *
8368ce258SAndreas Gohr * Shows the sitemap
9368ce258SAndreas Gohr */
1033b91513SAndreas Gohrclass Index extends AbstractItem
1133b91513SAndreas Gohr{
1293b8c351SAndreas Gohr    /** @inheritdoc */
1333b91513SAndreas Gohr    public function __construct()
1433b91513SAndreas Gohr    {
15368ce258SAndreas Gohr        global $conf;
16368ce258SAndreas Gohr        global $ID;
1793b8c351SAndreas Gohr        parent::__construct();
1893b8c351SAndreas Gohr
1993b8c351SAndreas Gohr        $this->accesskey = 'x';
20*e44b94a4SAndreas Gohr        $this->svg = DOKU_INC . 'lib/images/menu/file-tree.svg';
2193b8c351SAndreas Gohr
2293b8c351SAndreas Gohr        // allow searchbots to get to the sitemap from the homepage (when dokuwiki isn't providing a sitemap.xml)
2393b8c351SAndreas Gohr        if ($conf['start'] == $ID && !$conf['sitemap']) {
2493b8c351SAndreas Gohr            $this->nofollow = false;
2593b8c351SAndreas Gohr        }
2693b8c351SAndreas Gohr    }
2793b8c351SAndreas Gohr}
28