1234567891011121314151617181920212223242526272829 |
- <?php
- namespace Grav\Plugin\Sitemap;
- class SitemapEntry
- {
- public $location;
- public $lastmod;
- public $changefreq;
- public $priority;
- public $image;
-
- public function __construct($location = null, $lastmod = null, $changefreq = null, $priority = null, $image = null)
- {
- $this->location = $location;
- $this->lastmod = $lastmod;
- $this->changefreq = $changefreq;
- $this->priority = $priority;
- $this->image = $image;
- }
- }
|