xref: /dokuwiki/inc/Menu/Item/Index.php (revision 4bb2fc4a55c12e16c9272726ea842cce055177a2)
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 */
1093b8c351SAndreas Gohrclass Index extends AbstractItem {
1193b8c351SAndreas Gohr
1293b8c351SAndreas Gohr    /** @inheritdoc */
1393b8c351SAndreas Gohr    public function __construct() {
14368ce258SAndreas Gohr        global $conf;
15368ce258SAndreas Gohr        global $ID;
1693b8c351SAndreas Gohr        parent::__construct();
1793b8c351SAndreas Gohr
1893b8c351SAndreas Gohr        $this->accesskey = 'x';
19*4bb2fc4aSAndreas Gohr        $this->svg = DOKU_INC . 'lib/images/menu/file-tree.svg';
2093b8c351SAndreas Gohr
2193b8c351SAndreas Gohr        // allow searchbots to get to the sitemap from the homepage (when dokuwiki isn't providing a sitemap.xml)
2293b8c351SAndreas Gohr        if($conf['start'] == $ID && !$conf['sitemap']) {
2393b8c351SAndreas Gohr            $this->nofollow = false;
2493b8c351SAndreas Gohr        }
2593b8c351SAndreas Gohr    }
2693b8c351SAndreas Gohr
2793b8c351SAndreas Gohr}
28