Lines Matching defs:priority
15 public $priority;
24 * @param $priority float|string The priority of the item relative to other URLs on your site.
27 public function __construct($url, $lastmod, $changefreq = null, $priority = null)
32 $this->priority = $priority;
41 * @param float|string $priority The priority of the item relative to other URLs on your site.
45 public static function createFromID($id, $changefreq = null, $priority = null)
50 return new Item(wl($id, '', true), $date, $changefreq, $priority);
65 if ($this->priority !== null)
66 $result .= ' <priority>' . hsc($this->priority) . '</priority>' . NL;