Home
last modified time | relevance | path

Searched refs:changefreq (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/inc/Sitemap/
DItem.php14 public $changefreq; variable in dokuwiki\\Sitemap\\Item
22 * @param string $changefreq How frequently the item is likely to change.
27 public function __construct($url, $lastmod, $changefreq = null, $priority = null) argument
31 $this->changefreq = $changefreq;
39 * @param string $changefreq How frequently the item is likely to change.
45 public static function createFromID($id, $changefreq = null, $priority = null) argument
50 return new Item(wl($id, '', true), $date, $changefreq, $priority);
63 if ($this->changefreq !== null)
64 $result .= ' <changefreq>' . hsc($this->changefreq) . '</changefreq>' . NL;