blob: a7459546ea5786a062cab2800e1b2e242fa1d925 (
plain) (
blame)
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;
}
}
}
|