Lines Matching defs:changefreq
14 public $changefreq;
22 * @param string $changefreq How frequently the item is likely to change.
27 public function __construct($url, $lastmod, $changefreq = null, $priority = null)
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)
50 return new Item(wl($id, '', true), $date, $changefreq, $priority);
63 if ($this->changefreq !== null)
64 $result .= ' <changefreq>' . hsc($this->changefreq) . '</changefreq>' . NL;